:root {
  --paper: #fff8f8;
  --paper-shadow: #efd8de;
  --paper-blush: #f9e7ec;
  --ink: #24181c;
  --ink-soft: #5e4a52;
  --charcoal: #563f48;
  --panel-dark: #614952;
  --accent: #f4b8c6;
  --accent-strong: #e694ad;
  --accent-pale: #ffeaf0;
  --panel-radius: 34px;
  --shadow: 0 24px 60px rgba(116, 77, 90, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 184, 198, 0.45), transparent 20%),
    radial-gradient(circle at 92% 8%, rgba(255, 232, 239, 0.8), transparent 18%),
    linear-gradient(180deg, #fff4f5 0%, #fdf0f2 100%);
  background-size: 135% 135%, 125% 125%, auto;
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

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

html {
  scroll-behavior: smooth;
}

#top,
#about,
#contact,
#branding-project,
#social-media-project,
#website-skill,
#projects {
  scroll-margin-top: 24px;
}

.site-shell {
  width: calc(100% - clamp(12px, 1.4vw, 24px));
  margin: clamp(6px, 0.7vw, 12px) auto;
  padding: 0;
}

.opening-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96), rgba(252, 227, 235, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 204, 218, 0.96));
  animation: openingFade 1.7s ease 2s forwards;
  pointer-events: none;
}

.opening-screen__flower {
  position: relative;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff8fb 0 16%, transparent 17%),
    radial-gradient(circle at 50% 7%, var(--accent) 0 26%, transparent 27%),
    radial-gradient(circle at 92% 50%, var(--accent) 0 26%, transparent 27%),
    radial-gradient(circle at 50% 92%, var(--accent) 0 26%, transparent 27%),
    radial-gradient(circle at 8% 50%, var(--accent) 0 26%, transparent 27%),
    radial-gradient(circle at 20% 20%, #ffd7e3 0 21%, transparent 22%),
    radial-gradient(circle at 80% 20%, #ffd7e3 0 21%, transparent 22%),
    radial-gradient(circle at 80% 80%, #ffd7e3 0 21%, transparent 22%),
    radial-gradient(circle at 20% 80%, #ffd7e3 0 21%, transparent 22%);
  box-shadow: 0 18px 42px rgba(230, 148, 173, 0.28);
  animation: flowerBloom 1.4s cubic-bezier(0.2, 0.9, 0.15, 1);
}

.opening-screen__label,
.opening-screen__title {
  margin: 0;
  color: var(--ink);
  animation: openingLift 0.9s ease both;
}

.opening-screen__label {
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  animation-delay: 0.28s;
}

.opening-screen__title {
  font-family: "Poiret One", cursive;
  font-size: clamp(3rem, 9vw, 6rem);
  animation-delay: 0.42s;
}

.paper-panel,
.dark-panel {
  position: relative;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 30px);
  margin-bottom: clamp(8px, 1vw, 14px);
  animation: sectionRise 0.95s ease both;
}

.paper-panel {
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.78)),
    url("./assets/paper-texture.svg");
  background-size: cover;
  box-shadow:
    inset 0 0 0 1px rgba(36, 24, 28, 0.04),
    0 16px 44px rgba(116, 77, 90, 0.09);
}

.dark-panel {
  background:
    linear-gradient(rgba(97, 73, 82, 0.94), rgba(97, 73, 82, 0.94)),
    url("./assets/paper-texture.svg");
  background-size: cover;
  color: #fff6f8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-42px);
}

[data-reveal="right"] {
  transform: translateX(42px);
}

[data-reveal="up"] {
  transform: translateY(42px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.top-pills {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 14px;
  padding: 22px 26px 0;
  flex-wrap: wrap;
}

.top-pills span,
.top-pills a {
  border-radius: 999px;
  background: rgba(244, 184, 198, 0.28);
  color: rgba(36, 24, 28, 0.8);
  padding: 10px 18px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(230, 148, 173, 0.18);
  box-shadow: 0 8px 18px rgba(233, 178, 194, 0.18);
  animation: chipFloat 4.8s ease-in-out infinite;
}

.top-pills span:nth-child(2) {
  animation-delay: 0.35s;
}

.top-pills span:nth-child(3) {
  animation-delay: 0.7s;
}

.top-pills a {
  background: rgba(97, 73, 82, 0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-bottom: 26px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  right: 5%;
  top: 12%;
  z-index: 0;
  width: min(46vw, 720px);
  height: min(42vw, 620px);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  background:
    radial-gradient(circle at 24% 32%, rgba(230, 148, 173, 0.26), transparent 24%),
    radial-gradient(circle at 74% 60%, rgba(244, 184, 198, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(255, 234, 240, 0.72), rgba(255, 248, 251, 0.12));
  filter: blur(1px);
  animation: heroBlobDance 12s ease-in-out infinite alternate;
}

.hero::after {
  right: 5%;
  bottom: 7%;
  z-index: 0;
  width: 280px;
  height: 210px;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(230, 148, 173, 0.72) 0 3px, transparent 4px);
  background-size: 24px 24px;
  transform: rotate(-8deg);
  animation: dotDrift 9s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
  align-items: center;
  gap: 24px;
  min-height: calc(100vh - 190px);
  padding: 10px 26px 0;
}

.hero-portrait-wrap {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: end;
  padding-left: 118px;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  margin-left: 22px;
  filter:
    grayscale(1)
    contrast(1.06)
    drop-shadow(10px 0 0 var(--accent))
    drop-shadow(-10px 0 0 var(--accent))
    drop-shadow(0 10px 0 var(--accent))
    drop-shadow(0 -10px 0 var(--accent))
    drop-shadow(7px 7px 0 var(--accent))
    drop-shadow(-7px 7px 0 var(--accent))
    drop-shadow(7px -7px 0 var(--accent))
    drop-shadow(-7px -7px 0 var(--accent));
  animation: portraitFloat 5.8s ease-in-out infinite 2.1s;
}

.hero-side-name {
  position: absolute;
  left: 8px;
  top: 36px;
  bottom: 24px;
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Bungee Shade", cursive;
  font-size: clamp(2.9rem, 4.3vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(230, 148, 173, 0.86);
  text-shadow:
    3px 3px 0 rgba(255, 255, 255, 0.95),
    8px 8px 24px rgba(230, 148, 173, 0.18);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  align-self: center;
  padding: 48px 18px 32px 0;
  animation: copyFade 1.1s ease both 0.65s;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -28px -46px auto -20px;
  width: min(108%, 820px);
  height: 68%;
  border-radius: 58px 42px 64px 38px;
  background:
    linear-gradient(135deg, rgba(248, 213, 224, 0.86), rgba(255, 248, 251, 0.34)),
    url("./assets/paper-texture.svg");
  border: 1px solid rgba(97, 73, 82, 0.1);
  box-shadow: 0 22px 52px rgba(116, 77, 90, 0.1);
  transform: rotate(-1.1deg);
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: 4%;
  bottom: 22%;
  width: 68%;
  height: 46%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 184, 198, 0.22), transparent 68%);
  filter: blur(18px);
  animation: glowBreath 7s ease-in-out infinite;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mega-title,
.section-title,
.bio-copy h2,
.footer-panel h2 {
  margin: 0;
  font-family: "Poiret One", cursive;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.mega-title {
  font-size: clamp(4.4rem, 11vw, 9rem);
  white-space: nowrap;
}

.accent-letter {
  position: relative;
  display: inline-block;
}

.accent-letter::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.26em;
  height: 0.26em;
  border-radius: 50%;
  background: var(--accent-strong);
  transform: translate(-50%, -56%);
  box-shadow: 0 0 0 8px rgba(230, 148, 173, 0.15);
  animation: dotPulse 3s ease-in-out infinite;
}

.hero-summary {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1.72;
  color: rgba(36, 24, 28, 0.78);
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 32px;
}

.hero-services-grid article {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 24px 58px 24px 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 248, 251, 0.86), transparent 18%),
    linear-gradient(135deg, rgba(250, 214, 226, 0.86), rgba(255, 248, 251, 0.72)),
    url("./assets/paper-texture.svg");
  border: 1px solid rgba(230, 148, 173, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 18px 36px rgba(116, 77, 90, 0.1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  animation: softLift 6.5s ease-in-out infinite;
}

.hero-services-grid article::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at center, rgba(255, 248, 251, 0.94), transparent 42%),
    rgba(97, 73, 82, 0.05);
}

.hero-services-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 48px rgba(116, 77, 90, 0.15);
}

.hero-services-grid article:nth-child(2) {
  animation-delay: -1.4s;
}

.hero-services-grid article:nth-child(3) {
  animation-delay: -2.6s;
}

.hero-services-grid .service-orb {
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  margin: 0;
  background: rgba(255, 248, 251, 0.78);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(116, 77, 90, 0.12);
}

.hero-services-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
}

.hero-services-grid p {
  margin: 0;
  color: rgba(36, 24, 28, 0.68);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hero-pink-note {
  position: absolute;
  right: 10%;
  bottom: 28%;
  z-index: 1;
  width: 172px;
  padding: 16px 18px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(244, 184, 198, 0.84), rgba(255, 234, 240, 0.76)),
    url("./assets/paper-texture.svg");
  border: 1px solid rgba(230, 148, 173, 0.24);
  box-shadow: 0 20px 42px rgba(116, 77, 90, 0.14);
  transform: rotate(7deg);
  animation: noteFloat 6s ease-in-out infinite;
}

.hero-floating-card {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 160px;
  height: 88px;
  border-radius: 28px 22px 32px 18px;
  background:
    linear-gradient(145deg, rgba(255, 234, 240, 0.86), rgba(255, 248, 251, 0.7)),
    url("./assets/paper-texture.svg");
  border: 1px solid rgba(230, 148, 173, 0.22);
  box-shadow: 0 22px 44px rgba(116, 77, 90, 0.13);
  color: rgba(36, 24, 28, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-floating-card--one {
  right: 19%;
  top: 22%;
  transform: rotate(-8deg);
  animation: floatCardOne 8s ease-in-out infinite;
}

.hero-floating-card--two {
  right: 6%;
  top: 45%;
  transform: rotate(9deg);
  animation: floatCardTwo 9s ease-in-out infinite;
}

.hero-sparkle-trail {
  position: absolute;
  z-index: 1;
  left: 52%;
  bottom: 16%;
  width: 260px;
  height: 180px;
  opacity: 0.68;
  background-image:
    radial-gradient(circle, rgba(230, 148, 173, 0.55) 0 5px, transparent 6px),
    radial-gradient(circle, rgba(255, 248, 251, 0.85) 0 3px, transparent 4px);
  background-size: 34px 34px, 48px 48px;
  transform: rotate(-14deg);
  animation: sparkleSlide 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-pink-note span,
.hero-pink-note strong {
  display: block;
}

.hero-pink-note span {
  margin-bottom: 4px;
  color: rgba(36, 24, 28, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-pink-note strong {
  color: var(--ink);
  font-family: "Poiret One", cursive;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 0.95;
}

.hero-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin: -34px 26px 0;
  padding: 30px 34px;
  border-radius: 26px;
  background:
    linear-gradient(rgba(97, 73, 82, 0.95), rgba(97, 73, 82, 0.95)),
    url("./assets/paper-texture.svg");
  background-size: cover;
  color: #fff8fb;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 45px rgba(95, 68, 80, 0.2);
}

.hero-band-copy p,
.projects-note,
.projects-feature-copy p,
.footer-panel p,
.bio-copy p {
  line-height: 1.8;
}

.hero-band-copy p {
  margin: 0;
  max-width: 660px;
  color: rgba(255, 248, 251, 0.84);
}

.hero-name-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hero-name-label {
  font-size: clamp(2rem, 4vw, 3.85rem);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-name-subtitle {
  color: rgba(255, 248, 251, 0.72);
}

.bio-panel {
  display: grid;
  gap: 34px;
  padding: 70px 42px 78px;
}

.bio-intro {
  position: relative;
  z-index: 1;
}

.bio-mega-title {
  font-size: clamp(4rem, 11vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.bio-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: 42px;
}

.bio-board-layout {
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.62fr) minmax(260px, 0.52fr);
  align-items: stretch;
  gap: 24px;
}

.bio-open-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr) minmax(240px, 0.45fr);
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
}

.bio-window-card,
.bio-folder-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 22px 46px rgba(29, 17, 22, 0.16);
}

.bio-window-card {
  padding: 64px 30px 30px;
}

.bio-window-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 248, 251, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bio-window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.bio-window-bar span:nth-child(2) {
  background: #f4d08b;
}

.bio-window-bar span:nth-child(3) {
  background: #90d9a4;
}

.bio-window-label {
  margin: 0 0 12px;
  color: rgba(255, 248, 251, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bio-copy--plain {
  max-width: 780px;
}

.bio-side-info {
  align-self: center;
}

.bio-side-info h3 {
  margin: 0 0 18px;
  color: #fff8fb;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}

.bio-folder-card {
  align-self: start;
  padding: 34px 24px 24px;
}

.folder-tab {
  position: absolute;
  top: 0;
  left: 24px;
  width: 108px;
  height: 28px;
  border-radius: 0 0 14px 14px;
  background: rgba(244, 184, 198, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
}

.bio-folder-card h3 {
  margin: 0 0 18px;
  color: #fff8fb;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
}

.bio-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bio-service-tags span {
  padding: 10px 13px;
  border-radius: 0;
  color: rgba(255, 248, 251, 0.82);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 248, 251, 0.2);
  font-size: 0.86rem;
  padding-left: 0;
}

.bio-copy h2,
.section-title,
.footer-panel h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.bio-copy > p {
  max-width: 720px;
  color: rgba(255, 246, 248, 0.82);
}

.bio-lead {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.55;
  color: #fff8fb;
  margin: 0 0 22px;
}

.bio-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.bio-highlights span {
  padding: 0 18px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 248, 251, 0.18);
  color: rgba(255, 248, 251, 0.88);
  letter-spacing: 0.03em;
}

.bio-company-mark {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  margin-top: 26px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 248, 251, 0.16);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.bio-company-mark img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(244, 184, 198, 0.26);
}

.bio-company-mark span,
.bio-company-mark strong {
  display: block;
}

.bio-company-mark span {
  margin-bottom: 4px;
  color: rgba(255, 248, 251, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bio-company-mark strong {
  color: #fff8fb;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.projects-feature-copy h3,
.project-card h3,
.skill-copy h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.feature-photo-card {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.feature-photo-card--bio {
  width: min(100%, 430px);
  justify-self: center;
}

.bio-photo-plain {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-photo-card img,
.projects-feature img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  background:
    linear-gradient(180deg, rgba(255, 245, 247, 0.95), rgba(249, 225, 233, 0.96));
  padding: 12px;
  border: 1px solid rgba(230, 148, 173, 0.18);
  box-shadow: 0 18px 40px rgba(29, 17, 22, 0.12);
  aspect-ratio: 3 / 4;
}

.bio-photo-plain img {
  padding: 0;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 24px 46px rgba(29, 17, 22, 0.18);
}

.feature-photo-card img {
  max-height: 720px;
}

.photo-note {
  margin: 14px 2px 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 246, 248, 0.66);
}

.services-panel,
.projects-panel {
  padding: 64px 42px;
}

.section-title--skills {
  font-size: clamp(4.9rem, 11vw, 9.6rem);
  margin-bottom: 34px;
}

.projects-mega-title {
  margin: 0 0 34px;
  font-family: "Poiret One", cursive;
  font-size: clamp(4.9rem, 11vw, 9.6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.project-card,
.projects-feature {
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(116, 77, 90, 0.1);
}

.skills-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(230, 148, 173, 0.28);
  max-width: 1180px;
}

.project-card:hover,
.projects-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(116, 77, 90, 0.16);
}

.project-card p,
.projects-note,
.projects-feature-copy p,
.skill-copy p {
  color: rgba(36, 24, 28, 0.72);
}

.skill-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  padding: 48px 0 56px;
  border-bottom: 1px solid rgba(230, 148, 173, 0.28);
}

.skill-index {
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.85;
  font-weight: 800;
  color: rgba(36, 24, 28, 0.96);
  letter-spacing: -0.05em;
}

.skill-copy h3 {
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1;
  margin-bottom: 16px;
}

.skill-copy p {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 1.12rem;
  line-height: 1.9;
}

.skill-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-copy li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(230, 148, 173, 0.24);
  box-shadow: 0 10px 22px rgba(116, 77, 90, 0.08);
}

.skills-side-note {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.skills-side-note p {
  max-width: 560px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(36, 24, 28, 0.7);
}

.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.projects-note {
  max-width: 360px;
  margin: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.project-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 310px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid rgba(230, 148, 173, 0.28);
  background:
    radial-gradient(circle at top right, rgba(244, 184, 198, 0.28), transparent 38%),
    rgba(255, 255, 255, 0.62);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.62) 48%, transparent 58% 100%);
  transform: translateX(-115%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.project-card:hover {
  border-color: rgba(230, 148, 173, 0.72);
}

.project-card:hover::before {
  transform: translateX(115%);
}

.project-index {
  display: inline-flex;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--ink);
  font-weight: 800;
}

.project-type {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-card h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  line-height: 1;
  max-width: 8em;
}

.project-card > p:not(.project-type) {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  line-height: 1.75;
}

.project-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

.project-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 234, 240, 0.82);
  border: 1px solid rgba(230, 148, 173, 0.22);
  color: rgba(36, 24, 28, 0.72);
  font-size: 0.78rem;
}

.project-showcase-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 48px 0 0;
  border-top: 1px solid rgba(230, 148, 173, 0.28);
}

.project-showcase-row + .project-showcase-row {
  margin-top: 48px;
}

.project-showcase-index {
  display: block;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.85;
  font-weight: 800;
  color: rgba(36, 24, 28, 0.96);
  letter-spacing: -0.05em;
}

.project-row-label h3 {
  margin: 14px 0 10px;
  max-width: 5.6em;
  font-size: clamp(2rem, 2.55vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.project-row-label p {
  max-width: 220px;
  margin: 0;
  color: rgba(36, 24, 28, 0.68);
  line-height: 1.75;
}

.project-detail-copy {
  padding: 8px 4px 0;
}

.project-detail-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 2.6vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.project-detail-copy p:not(.project-type) {
  max-width: 28em;
  margin: 0;
  color: rgba(36, 24, 28, 0.68);
  line-height: 1.78;
}

.case-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.poster-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.social-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.case-assets-grid figure,
.poster-assets-grid figure,
.social-assets-grid figure {
  margin: 0;
  overflow: visible;
  aspect-ratio: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.case-assets-grid img,
.poster-assets-grid img,
.social-assets-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.poster-assets-grid figure:first-child {
  grid-row: auto;
}

.poster-assets-grid figure:first-child img {
  height: auto;
}

/* Editorial portfolio hero inspired by rough print/poster motion references. */
.hero {
  background:
    linear-gradient(90deg, rgba(247, 243, 235, 0.97) 0 48%, rgba(22, 21, 20, 0.98) 48% 100%),
    url("./assets/paper-texture.svg");
  color: #f2262d;
  isolation: isolate;
}

.hero::before {
  inset: 0 auto 0 48%;
  width: 18px;
  height: auto;
  border-radius: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0 6px, transparent 6px 14px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.85), rgba(255, 255, 255, 0.12), rgba(20, 20, 20, 0.85));
  filter: none;
  animation: filmSpine 4s steps(2) infinite;
}

.hero::after {
  inset: 0;
  width: auto;
  height: auto;
  opacity: 0.22;
  background:
    repeating-linear-gradient(105deg, transparent 0 18px, rgba(255, 255, 255, 0.5) 19px 20px, transparent 21px 52px),
    radial-gradient(circle at 20% 18%, rgba(0, 0, 0, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px);
  background-size: auto, 9px 9px, 11px 11px;
  transform: none;
  animation: scratchMove 1.6s steps(3) infinite;
}

.hero-grid {
  min-height: calc(100vh - 130px);
}

.hero-copy::before,
.hero-copy::after,
.hero-floating-card,
.hero-sparkle-trail,
.hero-pink-note,
.sticker--palette-hero {
  display: none;
}

.hero-copy {
  padding-top: 18px;
  color: #f5f0e8;
}

.eyebrow {
  color: rgba(245, 240, 232, 0.72);
}

.grunge-title {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  width: min(96vw, 980px);
  margin-left: clamp(-420px, -32vw, -260px);
  color: #f2262d;
  font-family: Impact, "Arial Black", "Manrope", sans-serif;
  font-size: clamp(5.5rem, 13.5vw, 13rem);
  font-weight: 900;
  line-height: 0.74;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.12));
  animation: titleJitter 2.8s steps(2) infinite;
}

.title-port,
.title-folio {
  position: relative;
  z-index: 2;
  display: block;
  text-shadow:
    2px 0 rgba(0, 0, 0, 0.24),
    -1px 0 rgba(255, 255, 255, 0.16);
}

.title-port {
  color: #f2262d;
  mix-blend-mode: multiply;
}

.title-folio {
  color: #f2262d;
}

.title-port::after,
.title-folio::after {
  content: "";
  position: absolute;
  inset: 8% 2% 0 2%;
  opacity: 0.18;
  background-image: radial-gradient(circle, #111 0 1.2px, transparent 1.8px);
  background-size: 12px 9px;
  pointer-events: none;
}

.title-sketch-circle {
  position: absolute;
  z-index: 3;
  left: -2%;
  top: -16%;
  width: 44%;
  height: 82%;
  border: 7px solid rgba(18, 18, 18, 0.86);
  border-radius: 50%;
  transform: rotate(-5deg);
  box-shadow:
    10px 3px 0 -6px rgba(18, 18, 18, 0.78),
    -6px -4px 0 -4px rgba(18, 18, 18, 0.55);
  animation: sketchCircleWobble 3.2s ease-in-out infinite;
}

.title-sketch-circle::before,
.title-sketch-circle::after {
  content: "";
  position: absolute;
  inset: 7px -10px -6px 4px;
  border: 3px solid rgba(18, 18, 18, 0.55);
  border-radius: 50%;
  transform: rotate(5deg);
}

.title-sketch-circle::after {
  inset: -8px 3px 8px -12px;
  border-width: 2px;
  opacity: 0.55;
}

.title-star {
  position: absolute;
  z-index: 4;
  right: -1.5%;
  top: -24%;
  color: #f5f0e8;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4.6rem, 6vw, 7rem);
  line-height: 1;
  transform: rotate(18deg);
  animation: starWiggle 2.2s steps(2) infinite;
}

.hero-summary {
  max-width: 540px;
  margin-top: 28px;
  color: rgba(245, 240, 232, 0.82);
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
}

.hero-services-strip {
  display: flex;
  width: min(100%, 660px);
  max-width: none;
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border-top: 1px solid rgba(245, 240, 232, 0.24);
  border-bottom: 1px solid rgba(245, 240, 232, 0.24);
  perspective: none;
}

.hero-services-strip span {
  flex: 0 0 auto;
  padding: 11px 34px 11px 0;
  color: rgba(245, 240, 232, 0.9);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: serviceTicker 8s linear infinite;
}

.hero-services-grid article,
.hero-services-grid .service-orb,
.hero-services-grid article::after {
  all: unset;
}

.hero-portrait {
  filter:
    grayscale(1)
    contrast(1.18)
    drop-shadow(8px 0 0 rgba(242, 38, 45, 0.5))
    drop-shadow(-8px 0 0 rgba(242, 38, 45, 0.5))
    drop-shadow(0 8px 0 rgba(242, 38, 45, 0.5));
}

.hero-band {
  background:
    linear-gradient(90deg, rgba(245, 240, 232, 0.92), rgba(245, 240, 232, 0.76)),
    url("./assets/paper-texture.svg");
  color: #161514;
  box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.18);
}

.hero-band-copy p,
.hero-name-subtitle {
  color: rgba(22, 21, 20, 0.66);
}

.projects-panel {
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 184, 198, 0.3), transparent 26%),
    radial-gradient(circle at 86% 6%, rgba(255, 234, 240, 0.72), transparent 24%),
    linear-gradient(135deg, rgba(255, 248, 251, 0.98), rgba(255, 234, 240, 0.78)),
    url("./assets/paper-texture.svg");
  color: var(--ink);
}

.projects-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(230, 148, 173, 0.34) 0 3px, transparent 4px);
  background-size: 30px 30px;
  mask-image: linear-gradient(120deg, transparent 0 18%, #000 50%, transparent 86%);
}

.projects-panel > * {
  position: relative;
  z-index: 1;
}

.projects-mega-title,
.project-showcase-index {
  color: rgba(36, 24, 28, 0.96);
  font-family: "Poiret One", cursive;
  letter-spacing: 0.03em;
}

.project-showcase-row {
  border-top-color: rgba(230, 148, 173, 0.28);
}

.project-row-label p,
.project-detail-copy p:not(.project-type),
.project-type {
  color: rgba(36, 24, 28, 0.68);
}

.project-detail-copy h3,
.project-row-label h3 {
  color: var(--ink);
}

.case-assets-grid img,
.poster-assets-grid img,
.social-assets-grid img {
  filter: contrast(1.02) saturate(0.95);
}

.projects-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 26px;
  margin-top: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.projects-feature img {
  width: min(100%, 430px);
  max-height: 760px;
  justify-self: center;
}

.about-panel {
  position: relative;
  display: block;
  padding: 46px 42px;
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -36px -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 184, 198, 0.4), transparent 70%);
  pointer-events: none;
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: 26px 26px auto auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff8fb 0 16%, transparent 17%),
    radial-gradient(circle at 50% 4%, rgba(230, 148, 173, 0.82) 0 24%, transparent 25%),
    radial-gradient(circle at 96% 50%, rgba(244, 184, 198, 0.9) 0 24%, transparent 25%),
    radial-gradient(circle at 50% 96%, rgba(230, 148, 173, 0.82) 0 24%, transparent 25%),
    radial-gradient(circle at 4% 50%, rgba(244, 184, 198, 0.9) 0 24%, transparent 25%);
  opacity: 0.74;
  animation: flowerSpinFloat 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.about-panel__copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.about-panel__copy h2 {
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.about-panel__copy p {
  margin: 0 0 14px;
  color: rgba(36, 24, 28, 0.72);
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-panel__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 24px;
}

.about-panel__points span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(230, 148, 173, 0.16);
  box-shadow: 0 14px 30px rgba(116, 77, 90, 0.08);
  color: #2d171f;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 320px) auto;
  gap: 30px;
  align-items: center;
  padding: 52px 42px;
}

.contact-photo-card {
  position: relative;
  justify-self: center;
  width: min(100%, 290px);
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 46px rgba(29, 17, 22, 0.18);
  animation: contactPhotoFloat 6.5s ease-in-out infinite;
}

.contact-photo-card::before {
  content: "AADISHREE";
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 2;
  width: 142px;
  padding: 8px 12px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 238, 244, 0.92), rgba(244, 184, 198, 0.7)),
    url("./assets/paper-texture.svg");
  color: rgba(97, 73, 82, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  box-shadow: 0 10px 22px rgba(29, 17, 22, 0.16);
  transform: translateX(-50%) rotate(-5deg);
}

.contact-photo-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 3;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, #fff8fb 0 3px, transparent 4px),
    radial-gradient(circle at center, #f19ebb 0 10px, #b85f78 11px 100%);
  box-shadow:
    0 3px 0 rgba(70, 42, 52, 0.32),
    0 10px 18px rgba(29, 17, 22, 0.22);
}

.contact-photo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  transform: rotate(1.2deg);
  background:
    linear-gradient(180deg, rgba(255, 245, 247, 0.95), rgba(249, 225, 233, 0.96));
  padding: 10px;
  border: 1px solid rgba(230, 148, 173, 0.2);
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.contact-links a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #fff8fb;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.35;
  transition: color 0.24s ease, transform 0.24s ease;
}

.contact-links a:hover {
  color: var(--accent);
  transform: translateX(-6px);
}

.contact-links a:hover .contact-icon {
  background: rgba(255, 248, 251, 0.96);
  color: var(--panel-dark);
  transform: rotate(-6deg) scale(1.06);
}

.contact-links a > span:last-child {
  overflow-wrap: anywhere;
}

.contact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 251, 0.12);
  border: 1px solid rgba(255, 248, 251, 0.18);
  color: #fff8fb;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(29, 17, 22, 0.16);
  transition:
    background 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.contact-icon--mail {
  font-size: 1.18rem;
}

.contact-icon--phone {
  background: rgba(244, 184, 198, 0.18);
}

.contact-icon--linkedin {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  text-transform: lowercase;
}

.outline-shape {
  position: absolute;
  border: 14px solid rgba(230, 148, 173, 0.9);
  border-radius: 42% 58% 68% 32% / 38% 46% 54% 62%;
  pointer-events: none;
  opacity: 0.72;
}

.outline-shape--left {
  width: 440px;
  height: 620px;
  left: -150px;
  bottom: 220px;
}

.outline-shape--right {
  width: 340px;
  height: 560px;
  right: -120px;
  top: 120px;
}

.sticker {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: stickerFloat 7s ease-in-out infinite;
}

.sticker--flower {
  top: 86px;
  right: 54px;
  width: 96px;
  height: 96px;
}

.sticker--flower-small {
  top: 38px;
  right: 94px;
  width: 78px;
  height: 78px;
  animation-delay: -2s;
}

.sticker--flower-mid {
  right: 72px;
  top: 260px;
  width: 70px;
  height: 70px;
  opacity: 0.75;
  animation-delay: -1.4s;
}

.sticker--flower-dark {
  right: 240px;
  top: 86px;
  width: 86px;
  height: 86px;
  opacity: 0.8;
}

.sticker--flower::before,
.sticker--flower::after,
.flower-core,
.sticker--flower .flower-core::before,
.sticker--flower .flower-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #ffcddb;
}

.sticker--flower::before {
  inset: 22px 34px auto 34px;
  height: 42px;
}

.sticker--flower::after {
  inset: auto 22px 34px 22px;
  height: 42px;
}

.flower-core {
  inset: 34px;
  background: #fff7fa;
  box-shadow:
    0 -28px 0 0 #ffcddb,
    0 28px 0 0 #ffcddb,
    28px 0 0 0 #ffcddb,
    -28px 0 0 0 #ffcddb,
    20px 20px 0 0 #ffdce7,
    -20px 20px 0 0 #ffdce7,
    20px -20px 0 0 #ffdce7,
    -20px -20px 0 0 #ffdce7;
}

.sticker--brush {
  right: 52px;
  bottom: 190px;
  width: 152px;
  height: 34px;
  background: linear-gradient(90deg, #7c5f45 0 58%, #f6d7a2 58% 82%, #f19ebb 82% 100%);
  border-radius: 999px;
  transform: rotate(22deg);
  box-shadow: 0 12px 28px rgba(126, 89, 104, 0.18);
}

.sticker--brush .brush-tip {
  position: absolute;
  right: -18px;
  top: 6px;
  width: 0;
  height: 0;
  border-left: 26px solid #f4b8c6;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.sticker--brush-footer {
  right: 30px;
  top: 44px;
  bottom: auto;
  transform: rotate(12deg);
  opacity: 0.85;
}

.sticker--brush-soft {
  left: auto;
  right: 56px;
  top: auto;
  bottom: 72px;
  transform: rotate(-18deg);
  opacity: 0.76;
}

.sticker--palette {
  right: 38px;
  top: 28px;
  width: 150px;
  height: 110px;
  animation-delay: -3s;
}

.sticker--palette-hero {
  right: 88px;
  top: 138px;
  bottom: auto;
  transform: rotate(-12deg);
}

.palette-blob {
  position: absolute;
  inset: 0;
  border-radius: 49% 51% 45% 55% / 59% 42% 58% 41%;
  background: linear-gradient(145deg, #ffeaf0, #f6bfd0);
  box-shadow: 0 15px 30px rgba(29, 17, 22, 0.12);
}

.palette-blob::before,
.palette-blob::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.palette-blob::before {
  inset: 22px 84px 56px 24px;
  background:
    radial-gradient(circle at 20% 40%, #e694ad 0 11px, transparent 12px),
    radial-gradient(circle at 62% 16%, #f6d2dd 0 11px, transparent 12px),
    radial-gradient(circle at 74% 76%, #fff5f8 0 11px, transparent 12px),
    radial-gradient(circle at 26% 88%, #ffc8d7 0 11px, transparent 12px);
}

.palette-blob::after {
  width: 26px;
  height: 26px;
  right: 24px;
  top: 42px;
  background: rgba(255, 248, 251, 0.92);
}

.sticker--laptop {
  right: 54px;
  top: 164px;
  width: 164px;
  height: 106px;
  animation-delay: -2.4s;
}

.laptop-screen {
  position: absolute;
  inset: 0;
}

.laptop-screen::before,
.laptop-screen::after {
  content: "";
  position: absolute;
}

.laptop-screen::before {
  inset: 0 0 18px;
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(135deg, #ffe7ef, #f5b2c5);
  border: 2px solid rgba(36, 24, 28, 0.1);
  box-shadow: 0 18px 32px rgba(116, 77, 90, 0.14);
}

.laptop-screen::after {
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8d8e1, #efb6c7);
  box-shadow: 0 8px 18px rgba(116, 77, 90, 0.12);
}

@keyframes openingFade {
  0%,
  70% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes openingLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowerBloom {
  0% {
    opacity: 0;
    transform: scale(0.32) rotate(-18deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.05) rotate(4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes portraitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes copyFade {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes stickerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes backgroundDrift {
  from {
    background-position: 0% 0%, 100% 0%, center;
  }
  to {
    background-position: 10% 8%, 88% 10%, center;
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(230, 148, 173, 0.15);
    transform: translate(-50%, -56%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(230, 148, 173, 0.08);
    transform: translate(-50%, -56%) scale(1.08);
  }
}

@keyframes contactPhotoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }
  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}

@keyframes heroBlobDance {
  from {
    transform: translate(0, 0) rotate(-2deg) scale(1);
  }
  to {
    transform: translate(-24px, 18px) rotate(4deg) scale(1.04);
  }
}

@keyframes dotDrift {
  from {
    transform: translateY(0) rotate(-8deg);
  }
  to {
    transform: translateY(-18px) rotate(-13deg);
  }
}

@keyframes glowBreath {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0.8deg);
  }
}

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

@keyframes floatCardOne {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-14px) rotate(-3deg);
  }
}

@keyframes floatCardTwo {
  0%,
  100% {
    transform: translateY(0) rotate(9deg);
  }
  50% {
    transform: translateY(16px) rotate(5deg);
  }
}

@keyframes sparkleSlide {
  from {
    transform: translate(0, 0) rotate(-14deg);
  }
  to {
    transform: translate(18px, -18px) rotate(-9deg);
  }
}

@keyframes titleJitter {
  0%,
  100% {
    transform: translate(0, 0) skewX(0deg);
  }
  20% {
    transform: translate(-1px, 1px) skewX(-0.4deg);
  }
  40% {
    transform: translate(1px, -1px) skewX(0.35deg);
  }
}

@keyframes sketchCircleWobble {
  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }
  50% {
    transform: rotate(-2deg) scale(1.02);
  }
}

@keyframes starWiggle {
  0%,
  100% {
    transform: rotate(18deg) translate(0, 0);
  }
  50% {
    transform: rotate(7deg) translate(-4px, 3px);
  }
}

@keyframes serviceTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-28px);
  }
}

@keyframes scratchMove {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 18px 0, 3px 7px, -5px 4px;
  }
}

@keyframes filmSpine {
  0%,
  100% {
    opacity: 0.86;
    transform: translateX(0);
  }
  50% {
    opacity: 0.68;
    transform: translateX(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .opening-screen,
  .opening-screen__flower,
  .opening-screen__label,
  .opening-screen__title,
  body,
  .paper-panel,
  .dark-panel,
  .hero-portrait,
  .hero-copy,
  .hero-pink-note,
  .sticker,
  .top-pills span,
  .accent-letter::after,
  .contact-photo-card {
    animation: none !important;
  }

  .grunge-title,
  .title-sketch-circle,
  .title-star,
  .hero-services-strip span,
  .projects-panel::before {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .bio-story-layout,
  .project-grid,
  .projects-feature,
  .project-showcase-row,
  .footer-panel,
  .projects-head {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-services-strip {
    display: flex;
    width: 100%;
    max-width: none;
  }

  .mega-title {
    white-space: normal;
  }

  .grunge-title {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: clamp(5rem, 18vw, 11rem);
  }

  .title-sketch-circle {
    width: 62%;
    height: 46%;
  }

  .hero-name-block,
  .contact-links {
    align-items: flex-start;
    text-align: left;
  }

  .contact-photo-card {
    justify-self: start;
    width: min(100%, 340px);
  }

  .case-assets-grid img {
    max-height: none;
  }

  .project-row-label p {
    max-width: 520px;
  }

  .hero-band {
    margin-top: 10px;
  }

  .hero-pink-note {
    right: 34px;
    bottom: 44%;
    width: 150px;
  }

  .feature-photo-card,
  .projects-feature img {
    max-width: 700px;
  }

  .skill-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-portrait-wrap {
    padding-left: 88px;
  }

  .bio-open-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .bio-side-info {
    max-width: 760px;
  }

  .bio-photo-plain {
    justify-self: start;
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 10px);
    margin: 5px auto;
    padding-top: 0;
  }

  .paper-panel,
  .dark-panel {
    border-radius: 18px;
    margin-bottom: 8px;
  }

  .hero,
  .services-panel,
  .projects-panel,
  .bio-panel,
  .footer-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(247, 243, 235, 0.98) 0 42%, rgba(19, 18, 18, 0.98) 42% 100%),
      url("./assets/paper-texture.svg");
    overflow: hidden;
  }

  .top-pills {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero::before {
    inset: 42% 0 auto;
    width: auto;
    height: 12px;
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(
      90deg,
      rgba(245, 242, 235, 0.16) 0 5px,
      rgba(0, 0, 0, 0.72) 5px 9px
    );
  }

  .hero::after {
    inset: 0;
    width: auto;
    height: auto;
    background-size: auto, 8px 8px, 10px 10px;
  }

  .hero-portrait {
    margin-left: 0;
    width: min(100%, 420px);
  }

  .hero-portrait-wrap {
    padding-left: 54px;
  }

  .hero-side-name {
    left: 0;
    top: 26px;
    bottom: 12px;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }

  .hero-band {
    margin-left: 0;
    margin-right: 0;
    padding: 24px 18px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-services-grid {
    grid-template-columns: none;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-services-strip {
    display: flex;
    width: 100%;
    max-width: none;
    margin-top: 20px;
    overflow: hidden;
  }

  .hero-services-strip span {
    min-width: max-content;
    padding: 8px 14px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .grunge-title {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: clamp(4.2rem, 24vw, 7.4rem);
  }

  .title-star {
    top: -10%;
    right: 7%;
    font-size: clamp(2.2rem, 15vw, 4.2rem);
  }

  .title-sketch-circle {
    left: -8%;
    top: -6%;
    width: 78%;
    height: 38%;
    border-width: 4px;
  }

  .projects-panel {
    background:
      radial-gradient(circle at 12% 12%, rgba(244, 184, 198, 0.3), transparent 26%),
      radial-gradient(circle at 86% 6%, rgba(255, 234, 240, 0.72), transparent 24%),
      linear-gradient(135deg, rgba(255, 248, 251, 0.98), rgba(255, 234, 240, 0.78)),
      url("./assets/paper-texture.svg");
  }

  .hero-services-grid article {
    min-height: auto;
    padding: 16px;
  }

  .hero-pink-note {
    display: none;
  }

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

  .bio-mega-title,
  .section-title--skills {
    line-height: 0.96;
  }

  .skill-copy ul {
    gap: 10px;
  }

  .outline-shape--left {
    width: 280px;
    height: 420px;
    left: -130px;
    bottom: 280px;
  }

  .outline-shape--right {
    width: 210px;
    height: 380px;
    right: -90px;
    top: 200px;
  }

  .sticker--flower,
  .sticker--palette,
  .sticker--brush-footer,
  .sticker--laptop {
    display: none;
  }

  .sticker--brush {
    right: -4px;
    bottom: 184px;
    transform: rotate(-28deg) scale(0.78);
  }

  .contact-photo-card {
    width: min(100%, 300px);
  }

  .bio-company-mark {
    grid-template-columns: 54px minmax(0, 1fr);
    width: 100%;
  }

  .bio-company-mark img {
    width: 54px;
    height: 54px;
  }

  .case-assets-grid figure,
  .poster-assets-grid figure,
  .social-assets-grid figure {
    border-radius: 0;
  }

  .project-detail-copy h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .case-assets-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .poster-assets-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .social-assets-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-assets-grid img,
  .poster-assets-grid img,
  .social-assets-grid img,
  .poster-assets-grid figure:first-child img {
    height: auto;
    max-height: none;
  }

.poster-assets-grid figure:first-child {
  grid-row: auto;
}

}

/* First-page editorial intro refresh */
.intro-panel {
  position: relative;
  min-height: calc(100vh - 10px);
  overflow: hidden;
  padding: clamp(8px, 1.2vw, 18px) clamp(22px, 4vw, 58px) clamp(30px, 4vw, 56px);
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 14%, rgba(230, 148, 173, 0.44), transparent 18%),
    radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(135deg, #fff8fb 0%, #ffdce7 46%, #fff7fa 100%),
    url("./assets/paper-texture.svg");
  border-color: rgba(230, 148, 173, 0.2);
}

.intro-panel::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% 38%;
  height: min(46vw, 520px);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(230, 148, 173, 0.16), rgba(255, 255, 255, 0));
  transform: rotate(-5deg);
  pointer-events: none;
}

.intro-panel::after {
  content: "PORTFOLIO";
  position: absolute;
  right: -0.6em;
  bottom: 0.04em;
  color: rgba(230, 148, 173, 0.11);
  font-family: "Poiret One", cursive;
  font-size: clamp(5rem, 14vw, 14rem);
  letter-spacing: 0.06em;
  line-height: 0.8;
  pointer-events: none;
}

.intro-panel > * {
  position: relative;
  z-index: 1;
}

.intro-orb,
.intro-dots {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.intro-orb {
  border: 1px solid rgba(230, 148, 173, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 234, 240, 0.82), rgba(255, 255, 255, 0.52)),
    url("./assets/paper-texture.svg");
  box-shadow: 0 24px 60px rgba(116, 77, 90, 0.12);
  animation: introFloat 8s ease-in-out infinite alternate;
}

.intro-orb--one {
  top: 2%;
  right: 8%;
  width: min(20vw, 260px);
  height: min(20vw, 260px);
  border-radius: 45% 55% 60% 40%;
}

.intro-orb--two {
  left: 4%;
  bottom: 10%;
  width: min(16vw, 190px);
  height: min(12vw, 150px);
  border-radius: 999px;
  transform: rotate(-16deg);
  animation-delay: -2s;
}

.intro-dots {
  right: 28%;
  bottom: 17%;
  width: 230px;
  height: 145px;
  opacity: 0.48;
  background-image: radial-gradient(circle, rgba(230, 148, 173, 0.72) 0 4px, transparent 5px);
  background-size: 28px 28px;
  transform: rotate(-10deg);
  animation: dotDrift 9s ease-in-out infinite alternate;
}

.intro-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1120px);
  margin-bottom: clamp(8px, 1.4vw, 18px);
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 232, 240, 0.66)),
    url("./assets/paper-texture.svg");
  border: 1px solid rgba(97, 73, 82, 0.16);
  box-shadow:
    0 18px 44px rgba(116, 77, 90, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform-style: preserve-3d;
  animation: topbarFloat 6s ease-in-out infinite alternate;
}

.intro-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intro-brand::before {
  content: "A";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff8fb;
  background: linear-gradient(145deg, #2d171f, #8b5870);
  box-shadow: 0 10px 22px rgba(97, 73, 82, 0.24);
}

.intro-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.intro-nav span,
.intro-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(36, 24, 28, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro-nav-links a {
  color: #fff8fb;
  background:
    linear-gradient(145deg, rgba(97, 73, 82, 0.98), rgba(154, 98, 121, 0.94));
  box-shadow: 0 10px 22px rgba(97, 73, 82, 0.22);
}

.intro-kicker {
  margin: 0 0 8px;
  color: rgba(36, 24, 28, 0.62);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.intro-panel .bio-mega-title {
  max-width: 1080px;
  color: var(--ink);
  font-size: clamp(3rem, 8.8vw, 9.6rem);
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.intro-hello {
  display: block;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.intro-name {
  position: relative;
  display: block;
  width: fit-content;
  color: #e894ad;
  font-family: "Manrope", sans-serif;
  font-size: 1.04em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 #fff8fb,
    7px 7px 0 rgba(97, 73, 82, 0.26),
    14px 18px 38px rgba(116, 77, 90, 0.24);
  transform: perspective(900px) rotateX(3deg) rotateY(-7deg);
  animation: nameLift 4.2s ease-in-out infinite alternate;
}

.intro-name::before {
  content: "";
  position: absolute;
  inset: 62% -3% 4% 2%;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(226, 54, 100, 0.3), rgba(255, 255, 255, 0));
  filter: blur(8px);
  transform: skewX(-18deg);
  animation: nameGlow 3s ease-in-out infinite alternate;
}

.intro-name::after {
  content: "bold visuals";
  position: absolute;
  left: 52%;
  top: 70%;
  color: #b5335a;
  font-family: "Poiret One", cursive;
  font-size: 0.22em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  transform: translateX(-50%) rotate(-5deg) skewX(-10deg);
  text-shadow: 0 6px 16px rgba(226, 54, 100, 0.18);
  pointer-events: none;
}

.intro-panel .bio-open-layout {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  grid-template-areas:
    "copy photo"
    "tools photo";
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(8px, 1.4vw, 18px);
}

.intro-panel .bio-copy--plain {
  grid-area: copy;
  max-width: 760px;
}

.intro-panel .bio-side-info {
  grid-area: tools;
  align-self: start;
  max-width: 880px;
}

.intro-panel .bio-photo-plain {
  grid-area: photo;
  position: relative;
  width: min(100%, 410px);
  justify-self: end;
  transform: rotate(2.5deg);
}

.intro-panel .bio-window-label {
  color: rgba(36, 24, 28, 0.52);
}

.intro-panel .bio-lead {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.42;
}

.intro-panel .bio-copy > p {
  color: rgba(36, 24, 28, 0.68);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.intro-panel .bio-highlights span {
  color: rgba(36, 24, 28, 0.76);
  border-right-color: rgba(230, 148, 173, 0.35);
}

.intro-panel .bio-side-info h3 {
  color: var(--ink);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

.intro-panel .bio-service-tags span {
  color: rgba(36, 24, 28, 0.7);
  border-bottom-color: rgba(230, 148, 173, 0.36);
}

.intro-skill-deck {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 18px;
  perspective: 1000px;
}

.intro-skill-deck article {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 16px 14px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 221, 233, 0.72)),
    url("./assets/paper-texture.svg");
  border: 1px solid rgba(230, 148, 173, 0.24);
  box-shadow:
    0 20px 40px rgba(116, 77, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: rotateX(7deg) rotateY(-8deg) translateZ(0);
  animation: cardHover3d 5.8s ease-in-out infinite alternate;
}

.intro-skill-deck article:nth-child(2) {
  animation-delay: -0.9s;
}

.intro-skill-deck article:nth-child(3) {
  animation-delay: -1.8s;
}

.intro-skill-deck article:nth-child(4) {
  animation-delay: -2.7s;
}

.intro-skill-deck article:nth-child(5) {
  animation-delay: -3.6s;
}

.intro-skill-deck article::after {
  content: "";
  position: absolute;
  inset: -45% -70% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(230, 148, 173, 0.22);
}

.intro-skill-deck span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff8fb;
  background: #614952;
  font-size: 0.8rem;
  font-weight: 900;
}

.intro-skill-deck strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.05;
}

.intro-skill-deck p {
  margin: 0;
  color: rgba(36, 24, 28, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

.intro-panel .bio-company-mark {
  border-top-color: rgba(230, 148, 173, 0.28);
}

.intro-panel .bio-company-mark span {
  color: rgba(36, 24, 28, 0.52);
}

.intro-panel .bio-company-mark strong {
  color: var(--ink);
}

.intro-panel .bio-photo-plain img {
  border: 12px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  box-shadow:
    0 30px 70px rgba(116, 77, 90, 0.18),
    -14px 14px 0 rgba(244, 184, 198, 0.42);
  animation: introPhotoFloat 7s ease-in-out infinite alternate;
}

.intro-photo-pin {
  position: absolute;
  z-index: 3;
  top: -18px;
  left: 50%;
  width: 74px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 234, 240, 0.78);
  border: 1px solid rgba(230, 148, 173, 0.28);
  box-shadow: 0 10px 22px rgba(116, 77, 90, 0.14);
  transform: translateX(-50%) rotate(-5deg);
}

.intro-photo-caption {
  max-width: 280px;
  margin: 18px 0 0 auto;
  color: rgba(36, 24, 28, 0.58);
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: right;
}

@keyframes introFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  to {
    transform: translate3d(14px, -18px, 0) rotate(5deg);
  }
}

/* Editorial rebuild: cleaner, less pink, direct profile-first landing. */
:root {
  --editorial-bg: #f7f5f0;
  --editorial-paper: #fffdfa;
  --editorial-ink: #111111;
  --editorial-muted: #5b5658;
  --editorial-line: #ddd7d2;
  --editorial-accent: #b12f66;
  --editorial-warm: #ff8b4a;
  --editorial-dark: #101010;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #3f3f3f;
  color: var(--editorial-ink);
}

.site-shell {
  width: min(100% - 28px, 1260px);
  margin: 14px auto;
  overflow: hidden;
  border-radius: 0;
  background: var(--editorial-bg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.paper-panel,
.dark-panel,
.footer-panel {
  border-radius: 0;
  box-shadow: none;
}

.intro-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(220px, 0.8fr) minmax(360px, 1fr) minmax(260px, 0.85fr);
  grid-template-areas:
    "nav nav nav"
    "title title title"
    "photo copy tools";
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  justify-items: stretch;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 5vw, 72px) clamp(58px, 7vw, 92px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 240, 0.94)),
    url("./assets/paper-texture.svg");
  color: var(--editorial-ink);
}

.intro-panel::before,
.intro-panel::after,
.intro-orb,
.intro-dots,
.intro-deco,
.sticker--palette,
.sticker--flower-dark,
.intro-floating-photo,
.bio-company-mark {
  display: none !important;
}

.intro-nav {
  grid-area: nav;
  position: relative;
  display: grid;
  width: min(100%, 1088px);
  min-height: 70px;
  margin: 0 auto clamp(10px, 2vw, 24px);
  padding: 8px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--editorial-dark);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.13);
}

.intro-brand {
  position: static;
  grid-column: 2;
  display: inline-flex;
  gap: 11px;
  transform: none;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.intro-brand.is-popped {
  transform: scale(1.07);
}

.intro-brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: #050505;
  object-fit: cover;
}

.intro-brand span {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.intro-nav-links {
  grid-column: 1 / 4;
  grid-row: 1;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  width: 100%;
  pointer-events: none;
}

.intro-nav-links a {
  min-width: 0;
  margin: 0;
  padding: 0;
  justify-self: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  pointer-events: auto;
  transition: color 0.22s ease, transform 0.22s ease;
}

.intro-nav-links a:nth-child(2) {
  grid-column: 2;
  justify-self: start;
  margin-right: 0;
}

.intro-nav-links a:last-child {
  grid-column: 4;
  justify-self: end;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--editorial-warm);
  color: #111;
  font-weight: 900;
}

.intro-nav-links a:hover,
.intro-nav-links a:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.intro-nav-links a:last-child:hover,
.intro-nav-links a:last-child:focus-visible {
  color: #111;
  transform: translateY(-2px) scale(1.03);
}

.bio-intro {
  grid-area: title;
  position: relative;
  width: min(100%, 1050px);
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.intro-kicker {
  display: inline-flex;
  margin: 0 0 clamp(16px, 2vw, 24px);
  padding: 9px 25px;
  align-items: center;
  border: 1.5px solid var(--editorial-dark);
  border-radius: 999px;
  background: var(--editorial-paper);
  color: var(--editorial-ink);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 8px 8px 0 rgba(255, 139, 74, 0.22);
}

.intro-kicker::after {
  content: "";
  width: 36px;
  height: 36px;
  margin-left: 12px;
  background:
    linear-gradient(90deg, transparent 45%, var(--editorial-warm) 46% 54%, transparent 55%) center / 100% 3px no-repeat,
    linear-gradient(0deg, transparent 45%, var(--editorial-warm) 46% 54%, transparent 55%) center / 3px 100% no-repeat;
  clip-path: polygon(48% 0, 58% 36%, 100% 46%, 60% 58%, 50% 100%, 40% 58%, 0 48%, 38% 38%);
  transform: rotate(12deg);
  animation: starSpin 7s linear infinite;
}

.intro-panel .bio-mega-title {
  max-width: 980px;
  margin: 0 auto;
  color: var(--editorial-ink);
  font-family: Manrope, sans-serif;
  font-size: clamp(4rem, 8.2vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.intro-hello {
  display: block;
  color: var(--editorial-ink);
  letter-spacing: -0.07em;
}

.intro-name {
  position: relative;
  display: inline-block;
  color: var(--editorial-accent);
  letter-spacing: -0.08em;
  animation: nameLift 4.8s ease-in-out infinite alternate;
}

.intro-name::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 1%;
  bottom: 9%;
  height: 14%;
  border-radius: 999px;
  background: rgba(255, 139, 74, 0.38);
  z-index: -1;
  transform: rotate(-1.5deg);
}

.intro-name::after {
  display: block;
  content: "freelance graphic designer";
  position: absolute;
  right: 4%;
  bottom: -0.82em;
  color: var(--editorial-ink);
  font-family: "Poiret One", cursive;
  font-size: clamp(1.1rem, 2.1vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  transform: rotate(-4deg);
}

.intro-panel .bio-open-layout {
  display: contents;
}

.intro-panel .bio-photo-plain {
  grid-area: photo;
  display: block;
  width: min(100%, 360px);
  align-self: start;
  justify-self: start;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
  transform: rotate(-1.3deg);
  animation: photoDrift 6.5s ease-in-out infinite alternate;
  z-index: 2;
}

.intro-panel .bio-photo-plain img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border: 0;
  border-radius: 0;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  filter: grayscale(1) contrast(1.08);
}

.intro-photo-pin,
.intro-photo-caption {
  display: none !important;
}

.intro-panel .bio-copy--plain {
  grid-area: copy;
  align-self: start;
  max-width: 560px;
  margin-top: clamp(12px, 2vw, 28px);
  text-align: left;
}

.intro-panel .bio-window-label {
  display: block;
  margin: 0 0 16px;
  color: var(--editorial-ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

.intro-panel .bio-lead {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--editorial-ink);
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.intro-panel .bio-copy--plain > p:not(.bio-lead):not(.bio-window-label) {
  display: block;
  max-width: 540px;
  margin: 0;
  color: var(--editorial-muted);
  font-size: clamp(0.98rem, 1.1vw, 1.07rem);
  line-height: 1.72;
}

.intro-panel .bio-highlights {
  display: none;
}

.intro-panel .bio-side-info {
  grid-area: tools;
  align-self: start;
  width: 100%;
  margin-top: clamp(16px, 3vw, 46px);
}

.intro-panel .bio-side-info h3 {
  display: block;
  margin: 0 0 18px;
  color: var(--editorial-ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

.bio-service-tags {
  display: none;
}

.intro-facts {
  display: grid;
  gap: 22px;
  margin: 0;
}

.intro-facts span {
  position: relative;
  display: block;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--editorial-line);
  color: var(--editorial-ink);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 850;
  line-height: 1.25;
}

.intro-facts span::before {
  content: "0" counter(fact);
  counter-increment: fact;
  display: block;
  margin-bottom: 7px;
  color: var(--editorial-warm);
  font-size: 0.82rem;
  font-weight: 900;
}

.intro-facts {
  counter-reset: fact;
}

.intro-facts span::after {
  display: none;
}

.services-panel {
  position: relative;
  background: var(--editorial-paper);
  border-top: 1px solid var(--editorial-line);
  color: var(--editorial-ink);
}

.services-panel::before {
  content: "I love bold type, soft details, layered visuals, and stories that feel human.";
  display: block;
  max-width: 560px;
  margin: 0 0 clamp(26px, 4vw, 46px) auto;
  color: var(--editorial-ink);
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.services-panel .sticker,
.services-panel .outline-shape {
  display: none !important;
}

.typing-line-art {
  position: absolute;
  top: clamp(28px, 5vw, 72px);
  left: clamp(20px, 5vw, 70px);
  right: auto;
  width: min(30vw, 300px);
  opacity: 0.88;
}

.typing-line-art path {
  stroke: var(--editorial-ink);
  stroke-width: 4.2;
}

.typing-line-art path:nth-child(2n) {
  stroke: var(--editorial-warm);
}

.section-title--skills,
.section-title {
  color: var(--editorial-ink);
}

.project-detail,
.project-detail:nth-child(even),
.footer-panel {
  background: var(--editorial-paper);
}

.project-row-label h3,
.project-detail-copy h3,
.footer-panel h2 {
  color: var(--editorial-ink);
  letter-spacing: -0.055em;
}

.project-row-label p,
.project-detail-copy p,
.footer-panel p {
  color: var(--editorial-muted);
}

.footer-panel {
  border-top: 1px solid var(--editorial-line);
}

@keyframes starSpin {
  to {
    transform: rotate(372deg);
  }
}

@keyframes nameLift {
  0% {
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(177, 47, 102, 0);
  }
  100% {
    transform: translateY(-8px);
    text-shadow: 10px 12px 0 rgba(255, 139, 74, 0.2);
  }
}

@keyframes photoDrift {
  0% {
    transform: rotate(-1.3deg) translateY(0);
  }
  100% {
    transform: rotate(1deg) translateY(-10px);
  }
}

@media (max-width: 980px) {
  .intro-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "nav nav"
      "title title"
      "photo copy"
      "tools tools";
  }

  .intro-panel .bio-side-info {
    margin-top: 0;
  }

  .intro-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }
}

@media (max-width: 760px) {
  body {
    background: var(--editorial-bg);
  }

  .site-shell {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .intro-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "title"
      "photo"
      "copy"
      "tools";
    gap: 26px;
    padding: 14px 16px 44px;
  }

  .intro-nav {
    display: flex;
    width: 100%;
    min-height: 62px;
    margin-bottom: 8px;
    padding: 9px 10px;
    border-radius: 999px;
  }

  .intro-brand {
    grid-column: auto;
    position: static;
    transform: none;
  }

  .intro-brand span {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.88rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-radius: 50%;
    background: var(--editorial-warm);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #111;
  }

  .intro-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 8px;
    z-index: 20;
    display: grid;
    width: min(220px, calc(100vw - 38px));
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    border-radius: 22px;
    background: var(--editorial-dark);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .intro-nav.is-open .intro-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .intro-nav-links a,
  .intro-nav-links a:nth-child(2),
  .intro-nav-links a:last-child {
    grid-column: auto;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    justify-self: stretch;
    border-radius: 14px;
    color: #fff;
    background: transparent;
    text-align: left;
  }

  .intro-nav-links a:last-child {
    color: #111;
    background: var(--editorial-warm);
  }

  .bio-intro {
    text-align: left;
  }

  .intro-kicker {
    margin-bottom: 14px;
    padding: 8px 18px;
  }

  .intro-kicker::after {
    width: 27px;
    height: 27px;
  }

  .intro-panel .bio-mega-title {
    max-width: 100%;
    font-size: clamp(3.4rem, 19vw, 5.6rem);
    line-height: 0.93;
    letter-spacing: -0.08em;
  }

  .intro-name {
    max-width: 100%;
  }

  .intro-name::after {
    position: static;
    display: block;
    margin-top: 8px;
    font-size: clamp(1.3rem, 8vw, 2rem);
    transform: rotate(-3deg);
  }

  .intro-panel .bio-photo-plain {
    width: min(100%, 330px);
    justify-self: center;
    margin: 4px 0 0;
  }

  .intro-panel .bio-copy--plain {
    max-width: 100%;
    margin-top: 0;
  }

  .intro-panel .bio-lead {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .intro-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-panel::before {
    max-width: 100%;
    margin: 0 0 28px;
  }

  .typing-line-art {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 260px);
    margin: 0 0 22px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-kicker::after,
  .intro-name,
  .intro-panel .bio-photo-plain,
  .typing-line-art path {
    animation: none !important;
  }
}

/* v39 full creative rebuild: bold designer home, less pink, more motion + depth. */
:root {
  --v39-ink: #121111;
  --v39-paper: #fbfaf5;
  --v39-cream: #f2eee6;
  --v39-muted: #5d5757;
  --v39-soft: #eadfdc;
  --v39-coral: #ff7f3f;
  --v39-rose: #c33572;
  --v39-plum: #2a111c;
  --v39-shadow: 0 30px 70px rgba(28, 18, 15, 0.18);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 127, 63, 0.18), transparent 23rem),
    radial-gradient(circle at 86% 4%, rgba(195, 53, 114, 0.14), transparent 22rem),
    #3f3f3f;
  color: var(--v39-ink);
}

.site-shell {
  width: min(100% - 34px, 1300px);
  margin: 26px auto;
  border: 16px solid #fff;
  border-radius: 0;
  background: var(--v39-paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.intro-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 0.88fr) minmax(260px, 0.76fr);
  grid-template-areas:
    "nav nav nav"
    "title title title"
    "copy photo tools";
  gap: clamp(24px, 3.4vw, 52px);
  align-items: start;
  overflow: hidden;
  padding: 34px clamp(28px, 5vw, 78px) clamp(56px, 7vw, 86px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 238, 230, 0.92)),
    url("./assets/paper-texture.svg");
}

.intro-panel::before {
  content: "";
  display: block !important;
  position: absolute;
  left: 50%;
  bottom: -150px;
  width: min(68vw, 720px);
  height: min(44vw, 460px);
  border-radius: 52% 52% 0 0;
  background: linear-gradient(135deg, rgba(255, 127, 63, 0.8), rgba(195, 53, 114, 0.72));
  opacity: 0.95;
  transform: translateX(-50%);
  z-index: -1;
  animation: heroHaloBreath 6s ease-in-out infinite alternate;
}

.intro-panel::after {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 72%, transparent);
  z-index: -2;
}

.intro-orb,
.intro-dots,
.intro-deco,
.sticker--palette,
.sticker--flower,
.intro-floating-photo,
.bio-company-mark {
  display: none !important;
}

.intro-nav {
  grid-area: nav;
  position: relative;
  display: grid;
  width: min(100%, 1120px);
  min-height: 76px;
  margin: 0 auto clamp(22px, 3vw, 42px);
  padding: 8px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: #111;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.18);
}

.intro-brand {
  grid-column: 2;
  position: static;
  transform: none;
  display: inline-flex;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  z-index: 2;
}

.intro-brand.is-popped {
  transform: scale(1.08);
}

.intro-brand img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #050505;
  object-fit: cover;
}

.intro-brand span {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.intro-nav-links {
  grid-column: 1 / 4;
  grid-row: 1;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  width: 100%;
  pointer-events: none;
}

.intro-nav-links a,
.intro-nav-links a:nth-child(2),
.intro-nav-links a:last-child {
  grid-column: auto;
  justify-self: start;
  margin: 0;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: none;
  pointer-events: auto;
  transition: color 0.22s ease, transform 0.22s ease;
}

.intro-nav-links a:first-child {
  justify-self: start;
  padding: 16px 28px;
  background: var(--v39-coral);
  color: #111;
  font-weight: 900;
}

.intro-nav-links a:nth-child(2) {
  grid-column: 3;
}

.intro-nav-links a:nth-child(3) {
  grid-column: 4;
  justify-self: end;
}

.intro-nav-links a:hover,
.intro-nav-links a:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.intro-nav-links a:first-child:hover,
.intro-nav-links a:first-child:focus-visible {
  color: #111;
  transform: translateY(-2px) scale(1.03);
}

.bio-intro {
  grid-area: title;
  width: min(100%, 1060px);
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.intro-kicker {
  position: relative;
  display: inline-flex;
  margin: 0 0 16px;
  padding: 9px 28px;
  align-items: center;
  border: 1.5px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 850;
  box-shadow: 7px 7px 0 rgba(255, 127, 63, 0.38);
}

.intro-kicker::before,
.intro-kicker::after {
  content: "";
  position: absolute;
  display: block;
  background: var(--v39-coral);
}

.intro-kicker::before {
  right: -18px;
  top: -16px;
  width: 3px;
  height: 22px;
  transform: rotate(-14deg);
}

.intro-kicker::after {
  right: -31px;
  top: 4px;
  width: 27px;
  height: 3px;
  border-radius: 999px;
  transform: rotate(-28deg);
  animation: none;
}

.intro-panel .bio-mega-title {
  margin: 0 auto;
  max-width: 980px;
  color: #111;
  font-family: Manrope, sans-serif;
  font-size: clamp(4.1rem, 8.8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.intro-hello {
  display: inline;
  color: #111;
  letter-spacing: -0.08em;
}

.intro-name {
  position: relative;
  display: inline-block;
  color: var(--v39-coral);
  letter-spacing: -0.08em;
  animation: heroNameFloat 4.4s ease-in-out infinite alternate;
}

.intro-name::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 0;
  bottom: 7%;
  height: 18%;
  border-radius: 999px;
  background: rgba(195, 53, 114, 0.22);
  transform: rotate(-2deg);
  z-index: -1;
}

.intro-name::after {
  display: none;
}

.intro-subtitle {
  width: min(100%, 650px);
  margin: 22px auto 0;
  color: var(--v39-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.hero-cta-row {
  display: inline-flex;
  gap: 12px;
  margin-top: 28px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.hero-cta-row a {
  display: inline-flex;
  min-width: 138px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--v39-coral);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-cta-row a:nth-child(2) {
  color: #111;
  background: rgba(255, 255, 255, 0.72);
}

.hero-cta-row a:hover,
.hero-cta-row a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(255, 127, 63, 0.2);
}

.intro-panel .bio-open-layout {
  display: contents;
}

.intro-panel .bio-photo-plain {
  grid-area: photo;
  position: relative;
  justify-self: center;
  align-self: end;
  width: min(100%, 390px);
  margin: clamp(6px, 2vw, 20px) 0 0;
  z-index: 4;
  transform: none;
  animation: heroPortraitFloat 5.8s ease-in-out infinite alternate;
}

.intro-panel .bio-photo-plain::before {
  content: "";
  position: absolute;
  inset: auto 10% -9% 10%;
  height: 22%;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.2);
  filter: blur(18px);
  z-index: -1;
}

.intro-panel .bio-photo-plain img {
  width: 100%;
  aspect-ratio: 3.8 / 5;
  object-fit: cover;
  object-position: center 30%;
  border: 10px solid #fff;
  border-radius: 999px 999px 28px 28px;
  box-shadow: var(--v39-shadow);
  filter: saturate(0.94) contrast(1.04);
}

.intro-photo-pin,
.intro-photo-caption {
  display: none !important;
}

.intro-panel .bio-copy--plain {
  grid-area: copy;
  align-self: center;
  max-width: 330px;
  margin: clamp(18px, 5vw, 80px) 0 0;
  text-align: left;
  z-index: 3;
}

.intro-panel .bio-window-label {
  display: block;
  margin: 0 0 18px;
  color: var(--v39-ink);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: lowercase;
}

.intro-panel .bio-window-label::before {
  content: open-quote;
  display: block;
  color: #25324f;
  font-size: 4.2rem;
  line-height: 0.65;
}

.intro-panel .bio-lead {
  margin: 0 0 20px;
  color: var(--v39-ink);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.intro-panel .bio-copy--plain > p:not(.bio-lead):not(.bio-window-label) {
  color: var(--v39-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.intro-panel .bio-side-info {
  grid-area: tools;
  align-self: center;
  width: min(100%, 300px);
  margin: clamp(20px, 5vw, 78px) 0 0 auto;
  z-index: 3;
}

.intro-panel .bio-side-info h3 {
  display: none;
}

.intro-facts {
  counter-reset: fact;
  display: grid;
  gap: 18px;
}

.intro-facts span {
  position: relative;
  display: block;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(18, 17, 17, 0.13);
  color: var(--v39-ink);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 900;
  line-height: 1.25;
}

.intro-facts span::before {
  content: "0" counter(fact);
  counter-increment: fact;
  display: block;
  margin-bottom: 7px;
  color: var(--v39-coral);
  font-size: 0.86rem;
  font-weight: 950;
}

.intro-facts span::after {
  display: none;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  display: grid;
  min-width: 106px;
  height: 68px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotateX(56deg) rotateZ(-20deg);
  box-shadow: 0 18px 0 rgba(17, 17, 17, 0.9), 0 28px 42px rgba(17, 17, 17, 0.18);
  animation: tileFly 6s ease-in-out infinite alternate;
}

.hero-shape--one {
  left: clamp(48px, 11vw, 150px);
  top: clamp(210px, 25vw, 320px);
  background: linear-gradient(135deg, #ff9867, #ff7f3f);
}

.hero-shape--two {
  right: clamp(68px, 11vw, 160px);
  top: clamp(220px, 28vw, 350px);
  background: linear-gradient(135deg, #c33572, #751d46);
  animation-delay: -1.4s;
}

.hero-shape--three {
  right: clamp(180px, 23vw, 310px);
  bottom: clamp(74px, 8vw, 122px);
  background: linear-gradient(135deg, #111, #40333b);
  animation-delay: -2.1s;
}

.hero-scribble {
  position: absolute;
  z-index: 1;
  width: 90px;
  height: 90px;
  border: 6px solid var(--v39-coral);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.75;
  animation: scribbleWiggle 4s ease-in-out infinite alternate;
}

.hero-scribble--one {
  left: clamp(230px, 22vw, 300px);
  top: clamp(325px, 35vw, 430px);
  transform: rotate(-32deg);
}

.hero-scribble--two {
  right: clamp(160px, 18vw, 260px);
  top: clamp(410px, 42vw, 520px);
  width: 62px;
  height: 62px;
  border-color: var(--v39-rose);
  border-left-color: transparent;
  border-top-color: transparent;
  animation-delay: -1.8s;
}

.services-panel {
  position: relative;
  padding-top: clamp(62px, 8vw, 110px);
  background: #fff;
  border-top: 1px solid rgba(18, 17, 17, 0.1);
}

.services-panel::before {
  content: "Skills that turn a rough idea into a complete visual world.";
  max-width: 640px;
  margin: 0 0 clamp(30px, 5vw, 58px) auto;
  color: #111;
  font-size: clamp(2.1rem, 4.3vw, 4.6rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.typing-line-art {
  top: clamp(36px, 7vw, 88px);
  left: clamp(22px, 6vw, 90px);
  width: min(32vw, 340px);
}

.typing-line-art path {
  stroke: #111;
}

.typing-line-art path:nth-child(2n) {
  stroke: var(--v39-coral);
}

.skill-row {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.skill-row:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 18px 42px rgba(18, 17, 17, 0.08);
}

.projects-panel {
  background:
    linear-gradient(180deg, #fbfaf5, #fff),
    url("./assets/paper-texture.svg");
}

.projects-mega-title {
  color: #111;
  letter-spacing: -0.075em;
}

.project-showcase-row {
  border-top: 1px solid rgba(18, 17, 17, 0.12);
}

.case-assets-grid figure,
.poster-assets-grid figure,
.social-assets-grid figure {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 20px 46px rgba(18, 17, 17, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.case-assets-grid figure:hover,
.poster-assets-grid figure:hover,
.social-assets-grid figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(18, 17, 17, 0.13);
}

.footer-panel {
  background: #111;
  color: #fff;
}

.footer-panel h2,
.footer-panel p,
.contact-links a {
  color: #fff;
}

@keyframes heroHaloBreath {
  0% {
    transform: translateX(-50%) scale(0.96);
  }
  100% {
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes heroNameFloat {
  0% {
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(17, 17, 17, 0);
  }
  100% {
    transform: translateY(-8px);
    text-shadow: 10px 12px 0 rgba(17, 17, 17, 0.1);
  }
}

@keyframes heroPortraitFloat {
  0% {
    transform: translateY(0) rotate(-0.6deg);
  }
  100% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes tileFly {
  0% {
    transform: rotateX(56deg) rotateZ(-20deg) translateY(0);
  }
  100% {
    transform: rotateX(56deg) rotateZ(-12deg) translateY(-16px);
  }
}

@keyframes scribbleWiggle {
  0% {
    transform: rotate(-32deg) scale(0.96);
  }
  100% {
    transform: rotate(-18deg) scale(1.05);
  }
}

@media (max-width: 1040px) {
  .intro-panel {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "nav nav"
      "title title"
      "photo copy"
      "tools tools";
  }

  .intro-panel .bio-side-info {
    width: 100%;
    margin: 4px 0 0;
  }

  .intro-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 34px;
  }

  .hero-shape--three {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    background: var(--v39-paper);
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border: 0;
    box-shadow: none;
  }

  .intro-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "title"
      "photo"
      "copy"
      "tools";
    gap: 24px;
    padding: 14px 16px 44px;
  }

  .intro-panel::before {
    width: 118vw;
    height: 320px;
    bottom: 260px;
    opacity: 0.75;
  }

  .intro-nav {
    display: flex;
    min-height: 62px;
    padding: 9px 10px;
    margin: 0 0 12px;
  }

  .intro-brand {
    grid-column: auto;
    max-width: calc(100% - 58px);
  }

  .intro-brand img {
    width: 40px;
    height: 40px;
  }

  .intro-brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-radius: 50%;
    background: var(--v39-coral);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #111;
  }

  .intro-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 8px;
    z-index: 30;
    display: grid;
    width: min(224px, calc(100vw - 36px));
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    border-radius: 22px;
    background: #111;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .intro-nav.is-open .intro-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .intro-nav-links a,
  .intro-nav-links a:first-child,
  .intro-nav-links a:nth-child(2),
  .intro-nav-links a:nth-child(3),
  .intro-nav-links a:last-child {
    grid-column: auto;
    width: 100%;
    padding: 12px 14px;
    justify-self: stretch;
    color: #fff;
    background: transparent;
    text-align: left;
  }

  .intro-nav-links a:first-child {
    color: #111;
    background: var(--v39-coral);
  }

  .bio-intro {
    text-align: center;
  }

  .intro-panel .bio-mega-title {
    font-size: clamp(3.15rem, 16vw, 4.8rem);
    line-height: 0.94;
  }

  .intro-hello,
  .intro-name {
    display: block;
  }

  .intro-subtitle {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-cta-row {
    width: 100%;
    max-width: 330px;
    flex-direction: column;
    border-radius: 28px;
  }

  .hero-cta-row a {
    width: 100%;
  }

  .intro-panel .bio-photo-plain {
    width: min(78vw, 300px);
    justify-self: center;
  }

  .intro-panel .bio-copy--plain {
    max-width: 100%;
    margin: 0;
    text-align: left;
  }

  .intro-panel .bio-lead {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .intro-panel .bio-side-info {
    width: 100%;
    margin: 0;
  }

  .intro-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-shape {
    min-width: 78px;
    height: 50px;
    font-size: 0.68rem;
    opacity: 0.86;
  }

  .hero-shape--one {
    left: 10px;
    top: 268px;
  }

  .hero-shape--two {
    right: 12px;
    top: 342px;
  }

  .hero-scribble {
    display: none;
  }

  .services-panel::before {
    max-width: 100%;
    margin-left: 0;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .typing-line-art {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 260px);
    margin: 0 0 22px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-panel::before,
  .intro-name,
  .intro-panel .bio-photo-plain,
  .hero-shape,
  .hero-scribble,
  .typing-line-art path,
  .skill-row {
    animation: none !important;
    transition: none !important;
  }
}

/* v40 scrapbook cover direction: full-screen, no upper bar, red portfolio masthead. */
:root {
  --cover-red: #d94f8d;
  --cover-paper: #fff4f8;
  --cover-ink: #1a1614;
  --cover-muted: #65575e;
  --cover-deep-pink: #8d2f5f;
  --cover-blush: #ffd8e6;
  --cover-peach: #ffc2a5;
}

body {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 194, 165, 0.34), transparent 22rem),
    radial-gradient(circle at 84% 8%, rgba(217, 79, 141, 0.24), transparent 24rem),
    var(--cover-paper);
}

.site-shell {
  width: 100%;
  margin: 0;
  border: 0;
  box-shadow: none;
  background: var(--cover-paper);
}

.intro-panel {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
  grid-template-areas:
    "cover cover"
    "card copy"
    "card tools";
  gap: clamp(26px, 4vw, 58px);
  padding: clamp(22px, 4vw, 56px) clamp(20px, 6vw, 86px) clamp(48px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 85%, rgba(255, 194, 165, 0.32), transparent 5rem),
    radial-gradient(circle at 62% 88%, rgba(217, 79, 141, 0.26), transparent 6rem),
    radial-gradient(circle at 86% 82%, rgba(255, 194, 165, 0.26), transparent 5rem),
    linear-gradient(180deg, rgba(255, 250, 252, 0.97) 0 66%, rgba(255, 244, 248, 0.84) 100%),
    url("./assets/paper-texture.svg");
  color: var(--cover-ink);
}

.intro-panel::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: auto -4vw -3vw -4vw;
  height: 28vh;
  min-height: 190px;
  background:
    radial-gradient(circle at 12% 60%, rgba(217, 79, 141, 0.22), transparent 52px),
    radial-gradient(circle at 24% 36%, rgba(255, 194, 165, 0.38), transparent 42px),
    radial-gradient(circle at 42% 62%, rgba(141, 47, 95, 0.14), transparent 38px),
    radial-gradient(circle at 58% 40%, rgba(217, 79, 141, 0.2), transparent 42px),
    radial-gradient(circle at 76% 52%, rgba(255, 194, 165, 0.34), transparent 48px),
    radial-gradient(circle at 90% 62%, rgba(141, 47, 95, 0.16), transparent 42px);
  filter: blur(16px);
  opacity: 0.78;
  transform: none;
  animation: flowerWash 9s ease-in-out infinite alternate;
  z-index: 0;
}

.intro-panel::after {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(26, 22, 20, 0.035) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(217, 79, 141, 0.045) 100%);
  mix-blend-mode: multiply;
  opacity: 0.45;
  z-index: 1;
}

.intro-nav {
  display: none !important;
}

.intro-orb,
.intro-dots,
.intro-deco,
.sticker,
.hero-shape {
  display: none !important;
}

.hero-scribble {
  display: block !important;
  position: absolute;
  z-index: 4;
  border-color: var(--cover-red);
  opacity: 0.95;
}

.hero-scribble--one {
  left: 42%;
  top: 19%;
  width: min(35vw, 430px);
  height: min(17vw, 210px);
  border-width: 5px;
  border-right-color: var(--cover-red);
  border-bottom-color: transparent;
  transform: rotate(9deg);
  animation: coverLoop 7s ease-in-out infinite alternate;
}

.hero-scribble--two {
  right: 9%;
  top: 18%;
  width: 120px;
  height: 70px;
  border-width: 5px;
  transform: rotate(-13deg);
  animation: stampBob 4.5s ease-in-out infinite alternate;
}

.bio-intro {
  grid-area: cover;
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto clamp(12px, 3vw, 30px);
  padding-top: clamp(18px, 4vw, 58px);
  text-align: left;
  z-index: 3;
}

.intro-kicker {
  display: block;
  width: max-content;
  margin: 0 0 -0.12em clamp(4px, 3vw, 46px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--cover-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: lowercase;
}

.intro-kicker::before,
.intro-kicker::after {
  display: none;
}

.intro-panel .bio-mega-title {
  position: relative;
  max-width: none;
  margin: 0;
  color: var(--cover-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6.2rem, 18vw, 18rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.13em;
  text-transform: lowercase;
  text-shadow:
    0 2px 0 #fff,
    0 7px 0 rgba(216, 11, 11, 0.08);
  animation: coverTitleIn 1.1s cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

.intro-hello,
.intro-name {
  display: inline;
  color: var(--cover-red);
  letter-spacing: inherit;
  animation: none;
}

.intro-name::before,
.intro-name::after {
  display: none;
}

.intro-subtitle {
  position: absolute;
  right: clamp(8px, 4vw, 68px);
  top: clamp(18px, 4vw, 58px);
  width: 180px;
  min-height: 82px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 5px solid var(--cover-red);
  border-radius: 22px;
  color: var(--cover-red);
  font-size: clamp(0.88rem, 1.5vw, 1.35rem);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-13deg);
  animation: stampBob 4.4s ease-in-out infinite alternate;
}

.intro-subtitle::before,
.intro-subtitle::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cover-red);
}

.intro-subtitle::before {
  left: 14px;
  top: 12px;
}

.intro-subtitle::after {
  right: 14px;
  bottom: 12px;
}

.hero-cta-row {
  position: absolute;
  right: 4%;
  bottom: -34px;
  z-index: 5;
  display: inline-flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-cta-row a {
  min-width: 132px;
  min-height: 44px;
  border: 2px solid var(--cover-red);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cover-red), var(--cover-deep-pink));
  color: #fff;
  font-size: 0.95rem;
}

.hero-cta-row a:nth-child(2) {
  background: transparent;
  color: var(--cover-red);
}

.intro-panel .bio-open-layout {
  display: contents;
}

.intro-panel .bio-photo-plain {
  grid-area: card;
  position: relative;
  justify-self: center;
  align-self: start;
  width: min(100%, 350px);
  margin-top: 16px;
  padding: 16px 16px 28px;
  border: 1px solid rgba(26, 22, 20, 0.32);
  border-radius: 0;
  background: #fff8fb;
  box-shadow: 16px 18px 0 var(--cover-blush), 0 22px 44px rgba(141, 47, 95, 0.18);
  transform: rotate(-2deg);
  animation: polaroidFloat 6s ease-in-out infinite alternate;
  z-index: 3;
}

.intro-panel .bio-photo-plain::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, var(--cover-red) 35% 39%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(217, 79, 141, 0.18), rgba(217, 79, 141, 0.86));
  box-shadow: inset 0 0 0 5px rgba(141, 47, 95, 0.18), 0 10px 20px rgba(141, 47, 95, 0.18);
  transform: translateX(-50%);
  z-index: 4;
}

.intro-panel .bio-photo-plain img {
  width: 100%;
  aspect-ratio: 4 / 3.05;
  object-fit: cover;
  object-position: center 34%;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 22, 20, 0.18);
  filter: saturate(0.95) contrast(1.03);
}

.intro-panel .bio-photo-plain::after {
  content: "Hi, I'm Aadishree";
  display: block;
  margin-top: 18px;
  color: var(--cover-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-style: italic;
  line-height: 0.95;
}

.intro-panel .bio-copy--plain {
  grid-area: copy;
  position: relative;
  align-self: start;
  max-width: 650px;
  margin: clamp(20px, 3vw, 42px) 0 0;
  z-index: 3;
}

.intro-panel .bio-window-label {
  display: block;
  margin: 0 0 14px;
  color: var(--cover-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.11em;
  text-transform: none;
}

.intro-panel .bio-window-label::before {
  display: none;
}

.intro-panel .bio-lead {
  max-width: 590px;
  margin: 0 0 22px;
  color: var(--cover-ink);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 650;
  line-height: 1.44;
  letter-spacing: -0.035em;
}

.intro-panel .bio-copy--plain > p:not(.bio-lead):not(.bio-window-label) {
  max-width: 650px;
  color: var(--cover-ink);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.55;
}

.intro-panel .bio-side-info {
  grid-area: tools;
  align-self: start;
  width: 100%;
  max-width: 720px;
  margin: 0;
  z-index: 3;
}

.intro-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  counter-reset: fact;
}

.intro-facts span {
  border: 0;
  padding: 0 0 0 18px;
  color: var(--cover-ink);
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.35;
}

.intro-facts span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  display: block;
  width: 7px;
  height: 7px;
  margin: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cover-red), var(--cover-deep-pink));
}

.intro-facts span::after {
  display: none;
}

.services-panel,
.projects-panel,
.footer-panel {
  border-radius: 0;
}

@keyframes flowerWash {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, -3%, 0) scale(1.05);
  }
}

@keyframes coverTitleIn {
  0% {
    opacity: 0;
    transform: translateY(36px) skewX(-8deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewX(0);
  }
}

@keyframes coverLoop {
  0% {
    transform: rotate(9deg) translateY(0) scale(0.98);
  }
  100% {
    transform: rotate(13deg) translateY(-10px) scale(1.02);
  }
}

@keyframes stampBob {
  0% {
    transform: rotate(-13deg) translateY(0);
  }
  100% {
    transform: rotate(-9deg) translateY(-12px);
  }
}

@keyframes polaroidFloat {
  0% {
    transform: rotate(-2deg) translateY(0);
  }
  100% {
    transform: rotate(1deg) translateY(-12px);
  }
}

@media (max-width: 900px) {
  .intro-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cover"
      "card"
      "copy"
      "tools";
  }

  .intro-subtitle {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 210px);
    margin: 16px 0 0 auto;
  }

  .hero-cta-row {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 22px;
  }

  .intro-panel .bio-photo-plain {
    width: min(100%, 420px);
  }
}

@media (max-width: 620px) {
  .intro-panel {
    padding: 22px 16px 44px;
  }

  .intro-panel .bio-mega-title {
    font-size: clamp(5.4rem, 27vw, 8rem);
    line-height: 0.78;
  }

  .intro-kicker {
    margin-left: 0;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-scribble {
    opacity: 0.45;
  }

  .intro-panel .bio-photo-plain {
    width: min(100%, 330px);
    box-shadow: 9px 12px 0 var(--cover-blush), 0 18px 32px rgba(141, 47, 95, 0.14);
  }

  .intro-facts {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta-row a {
    width: 100%;
  }
}

/* v42 correction: full scrapbook cover visible, no mobile title split. */
.intro-panel {
  min-height: 100vh !important;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1fr) !important;
  grid-template-areas:
    "cover cover"
    "card copy"
    "card tools" !important;
  align-content: start !important;
  row-gap: clamp(18px, 3vw, 36px) !important;
  padding-top: clamp(18px, 3vw, 38px) !important;
}

.bio-intro {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-top: 0 !important;
  text-align: left !important;
}

.intro-kicker {
  margin-left: clamp(18px, 7vw, 120px) !important;
  margin-bottom: -0.18em !important;
  color: var(--cover-deep-pink) !important;
  font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
}

.intro-panel .bio-mega-title {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  color: var(--cover-red) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(7.4rem, 21vw, 18.5rem) !important;
  font-style: italic !important;
  font-weight: 500 !important;
  line-height: 0.72 !important;
  letter-spacing: -0.13em !important;
  white-space: nowrap !important;
  transform: translateX(-1.2vw);
}

.intro-hello,
.intro-name {
  display: inline !important;
  color: var(--cover-red) !important;
}

.intro-subtitle {
  right: clamp(26px, 6vw, 100px) !important;
  top: clamp(22px, 4vw, 56px) !important;
  background: rgba(255, 244, 248, 0.78);
  backdrop-filter: blur(5px);
}

.hero-cta-row {
  right: clamp(26px, 6vw, 96px) !important;
  bottom: clamp(-30px, -2vw, -18px) !important;
}

.intro-panel .bio-photo-plain {
  align-self: start !important;
  width: min(100%, 360px) !important;
  margin-top: 0 !important;
}

.intro-panel .bio-copy--plain {
  align-self: start !important;
  max-width: 690px !important;
  margin-top: clamp(6px, 1vw, 14px) !important;
}

.intro-panel .bio-window-label {
  font-size: clamp(3.6rem, 7vw, 6.5rem) !important;
}

.intro-panel .bio-side-info {
  max-width: 690px !important;
}

.hero-scribble--one {
  left: 34% !important;
  top: 11% !important;
  width: min(48vw, 620px) !important;
  height: min(20vw, 240px) !important;
}

.hero-scribble--two {
  right: 4% !important;
  top: 19% !important;
}

@media (max-width: 900px) {
  .intro-panel {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "cover"
      "card"
      "copy"
      "tools" !important;
    padding: 22px 18px 42px !important;
  }

  .intro-panel .bio-mega-title {
    font-size: clamp(5.6rem, 24vw, 11rem) !important;
    line-height: 0.76 !important;
    white-space: nowrap !important;
    transform: translateX(-4vw);
  }

  .intro-kicker {
    margin-left: 0 !important;
    font-size: clamp(2rem, 9vw, 3.4rem) !important;
  }

  .intro-subtitle {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: min(100%, 230px) !important;
    margin: 16px 0 0 auto !important;
  }

  .hero-cta-row {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 520px) {
  .intro-panel .bio-mega-title {
    font-size: clamp(4.4rem, 22vw, 6.2rem) !important;
    letter-spacing: -0.145em !important;
    transform: translateX(-8vw);
  }

  .intro-panel .bio-photo-plain {
    width: min(92vw, 330px) !important;
  }

  .hero-scribble--one {
    left: 18% !important;
    top: 7% !important;
    width: 88vw !important;
    height: 130px !important;
  }

  .hero-scribble--two,
  .intro-subtitle {
    transform: rotate(-8deg) scale(0.88) !important;
  }
}

/* v43 fresh hero: independent full-screen scrapbook cover. */
.intro-panel {
  display: block !important;
  min-height: 100vh !important;
  padding: 0 !important;
  background: #fff4f8 !important;
}

.intro-panel > :not(.fresh-cover) {
  display: none !important;
}

.fresh-cover {
  position: relative;
  min-height: 100vh;
  overflow: visible;
  padding: clamp(26px, 4vw, 58px) clamp(22px, 6vw, 88px) clamp(42px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(360px, 1fr);
  grid-template-areas:
    "mast mast"
    "photo about";
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  background:
    radial-gradient(circle at 22% 88%, rgba(255, 190, 209, 0.58), transparent 8rem),
    radial-gradient(circle at 62% 90%, rgba(255, 153, 180, 0.42), transparent 9rem),
    radial-gradient(circle at 88% 84%, rgba(255, 196, 166, 0.42), transparent 8rem),
    linear-gradient(180deg, rgba(255, 252, 249, 0.96), rgba(255, 244, 248, 0.9)),
    url("./assets/paper-texture.svg");
  color: #21171c;
}

.fresh-cover::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -7%;
  height: 28vh;
  min-height: 190px;
  background:
    radial-gradient(circle at 12% 60%, rgba(217, 79, 141, 0.22), transparent 54px),
    radial-gradient(circle at 26% 36%, rgba(255, 184, 204, 0.55), transparent 46px),
    radial-gradient(circle at 44% 62%, rgba(141, 47, 95, 0.16), transparent 40px),
    radial-gradient(circle at 61% 40%, rgba(217, 79, 141, 0.2), transparent 42px),
    radial-gradient(circle at 78% 52%, rgba(255, 196, 166, 0.48), transparent 50px),
    radial-gradient(circle at 92% 62%, rgba(141, 47, 95, 0.18), transparent 42px);
  filter: blur(15px);
  opacity: 0.82;
  animation: flowerWash 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.fresh-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(33, 23, 28, 0.028) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
  opacity: 0.65;
}

.fresh-cover__masthead,
.fresh-cover__polaroid,
.fresh-cover__about,
.fresh-cover__stamp,
.fresh-cover__scribble {
  position: relative;
  z-index: 2;
}

.fresh-cover__masthead {
  grid-area: mast;
  padding-top: clamp(8px, 2vw, 24px);
}

.fresh-cover__masthead p {
  margin: 0 0 -0.18em clamp(8px, 7vw, 116px);
  color: #8d2f5f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: lowercase;
}

.fresh-cover__masthead h1 {
  margin: 0;
  color: #d94f8d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 22vw, 19rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.68;
  letter-spacing: -0.14em;
  text-transform: lowercase;
  text-shadow: 0 3px 0 #fff, 0 12px 0 rgba(141, 47, 95, 0.08);
  white-space: nowrap;
  transform: translateX(-2vw);
  animation: coverTitleIn 1s cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

.fresh-cover__masthead span {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: clamp(10px, 1.5vw, 18px) 0 0 auto;
  color: #8d2f5f;
  font-size: clamp(0.92rem, 1.2vw, 1.1rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fresh-cover__stamp {
  position: absolute;
  right: clamp(26px, 7vw, 110px);
  top: clamp(76px, 8vw, 118px);
  width: 178px;
  min-height: 84px;
  display: grid;
  place-items: center;
  border: 5px solid #d94f8d;
  border-radius: 24px;
  color: #d94f8d;
  background: rgba(255, 244, 248, 0.7);
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-12deg);
  animation: stampBob 4.5s ease-in-out infinite alternate;
}

.fresh-cover__stamp::before,
.fresh-cover__stamp::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d94f8d;
}

.fresh-cover__stamp::before {
  left: 14px;
  top: 14px;
}

.fresh-cover__stamp::after {
  right: 14px;
  bottom: 14px;
}

.fresh-cover__scribble {
  position: absolute;
  border: 5px solid #d94f8d;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
}

.fresh-cover__scribble--one {
  left: 31%;
  top: 12%;
  width: min(48vw, 650px);
  height: min(18vw, 240px);
  transform: rotate(8deg);
  animation: coverLoop 7s ease-in-out infinite alternate;
}

.fresh-cover__scribble--two {
  right: 19%;
  top: 18%;
  width: 120px;
  height: 72px;
  border-left-color: transparent;
  transform: rotate(-18deg);
  animation: stampBob 4.5s ease-in-out infinite alternate;
}

.fresh-cover__polaroid {
  grid-area: photo;
  width: min(100%, 370px);
  justify-self: center;
  padding: 16px 16px 26px;
  border: 1px solid rgba(33, 23, 28, 0.28);
  background: #fff9fb;
  box-shadow: 16px 18px 0 #ffd5e3, 0 24px 46px rgba(141, 47, 95, 0.2);
  transform: rotate(-2deg);
  animation: polaroidFloat 6s ease-in-out infinite alternate;
}

.fresh-cover__polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.05;
  object-fit: cover;
  object-position: center 34%;
}

.fresh-cover__polaroid strong {
  display: block;
  margin-top: 18px;
  color: #d94f8d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.fresh-cover__polaroid ul {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px dashed rgba(33, 23, 28, 0.38);
  list-style: none;
}

.fresh-cover__polaroid li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin: 0 0 10px;
  color: #21171c;
  font-size: 0.95rem;
  line-height: 1.35;
}

.fresh-cover__polaroid li span {
  color: #8d2f5f;
  font-weight: 900;
}

.fresh-cover__about {
  grid-area: about;
  max-width: 690px;
  align-self: start;
  padding-top: clamp(2px, 1vw, 12px);
}

.fresh-cover__label {
  margin: 0 0 18px;
  color: #d94f8d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.12em;
}

.fresh-cover__about p:not(.fresh-cover__label) {
  max-width: 650px;
  margin: 0 0 20px;
  color: #21171c;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.fresh-cover__about p:nth-of-type(2) {
  font-weight: 760;
  font-size: clamp(1.18rem, 1.8vw, 1.52rem);
  line-height: 1.35;
}

.fresh-cover__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(20px, 3vw, 34px);
}

.fresh-cover__facts span {
  position: relative;
  padding-left: 18px;
  color: #21171c;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.fresh-cover__facts span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d94f8d;
}

.fresh-cover__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 38px);
}

.fresh-cover__actions a {
  display: inline-flex;
  min-height: 48px;
  min-width: 140px;
  align-items: center;
  justify-content: center;
  border: 2px solid #d94f8d;
  border-radius: 999px;
  background: linear-gradient(135deg, #d94f8d, #8d2f5f);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fresh-cover__actions a:nth-child(2) {
  background: rgba(255, 244, 248, 0.62);
  color: #8d2f5f;
}

.fresh-cover__actions a:hover,
.fresh-cover__actions a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(141, 47, 95, 0.18);
}

@media (max-width: 920px) {
  .fresh-cover {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mast"
      "photo"
      "about";
  }

  .fresh-cover__masthead h1 {
    font-size: clamp(6rem, 24vw, 11rem);
    transform: translateX(-5vw);
  }

  .fresh-cover__stamp {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    margin: -8px 0 12px;
    width: 160px;
    min-height: 74px;
  }

  .fresh-cover__polaroid {
    width: min(100%, 420px);
  }

  .fresh-cover__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .fresh-cover {
    padding: 22px 16px 44px;
  }

  .fresh-cover__masthead p {
    margin-left: 0;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .fresh-cover__masthead h1 {
    font-size: clamp(4.4rem, 22vw, 6.6rem);
    transform: translateX(-8vw);
  }

  .fresh-cover__masthead span {
    width: auto;
    margin-left: 0;
    font-size: 0.78rem;
  }

  .fresh-cover__scribble--one {
    left: 12%;
    top: 4%;
    width: 96vw;
    height: 120px;
    opacity: 0.48;
  }

  .fresh-cover__scribble--two {
    display: none;
  }

  .fresh-cover__stamp {
    transform: rotate(-8deg) scale(0.86);
    transform-origin: right top;
  }

  .fresh-cover__polaroid {
    width: min(100%, 330px);
    box-shadow: 9px 12px 0 #ffd5e3, 0 18px 32px rgba(141, 47, 95, 0.14);
  }

  .fresh-cover__label {
    font-size: clamp(3.2rem, 18vw, 4.9rem);
  }

  .fresh-cover__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* v50 newspaper / printed paper texture pass. */
body,
.site-shell,
.fresh-cover,
.services-panel,
.projects-panel,
.footer-panel {
  background-color: #fff3f7;
}

.fresh-cover {
  background:
    radial-gradient(circle at 22% 88%, rgba(255, 190, 209, 0.58), transparent 8rem),
    radial-gradient(circle at 62% 90%, rgba(255, 153, 180, 0.42), transparent 9rem),
    radial-gradient(circle at 88% 84%, rgba(255, 196, 166, 0.42), transparent 8rem),
    repeating-linear-gradient(0deg, rgba(84, 61, 68, 0.045) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(84, 61, 68, 0.018) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 20% 24%, rgba(84, 61, 68, 0.045) 0 1px, transparent 1.4px),
    linear-gradient(180deg, rgba(255, 252, 249, 0.97), rgba(255, 244, 248, 0.92)),
    url("./assets/paper-texture.svg") !important;
  background-size:
    auto,
    auto,
    auto,
    auto,
    auto,
    18px 18px,
    auto,
    420px 420px !important;
}

.fresh-cover::after {
  background:
    repeating-linear-gradient(0deg, rgba(33, 23, 28, 0.045) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 18% 30%, rgba(33, 23, 28, 0.05) 0 0.8px, transparent 1px),
    radial-gradient(circle at 72% 22%, rgba(33, 23, 28, 0.04) 0 0.7px, transparent 1px),
    radial-gradient(circle at 48% 70%, rgba(33, 23, 28, 0.035) 0 0.8px, transparent 1px) !important;
  background-size: auto, 19px 21px, 23px 27px, 31px 29px !important;
  opacity: 0.68 !important;
}

.services-panel,
.projects-panel {
  background:
    repeating-linear-gradient(0deg, rgba(84, 61, 68, 0.035) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 30% 20%, rgba(84, 61, 68, 0.035) 0 1px, transparent 1.5px),
    linear-gradient(180deg, #fffafc, #fff3f7),
    url("./assets/paper-texture.svg") !important;
  background-size: auto, 20px 20px, auto, 420px 420px !important;
}

.fresh-cover__polaroid,
.fresh-cover__brand,
.fresh-cover__stamp {
  background:
    repeating-linear-gradient(0deg, rgba(84, 61, 68, 0.028) 0 1px, transparent 1px 5px),
    rgba(255, 250, 252, 0.88) !important;
}

/* v51 skills + projects upgrade. */
.services-panel {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 120px) !important;
}

.services-panel::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: 10%;
  width: min(38vw, 430px);
  height: min(38vw, 430px);
  border: 2px dashed rgba(217, 79, 141, 0.22);
  border-radius: 50%;
  animation: slowSpin 22s linear infinite;
  pointer-events: none;
}

.typing-line-art {
  z-index: 1;
  width: min(34vw, 390px) !important;
  opacity: 0.95 !important;
  filter: drop-shadow(0 20px 26px rgba(141, 47, 95, 0.14));
  animation: laptopFloat 5.5s ease-in-out infinite alternate;
}

.typing-line-art svg {
  overflow: visible;
}

.typing-line-art path {
  stroke-width: 5 !important;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: laptopDraw 3.8s ease-in-out infinite alternate !important;
}

.typing-line-art .laptop-screen-line,
.typing-line-art .laptop-base-line {
  stroke: #8d2f5f !important;
}

.typing-line-art .typing-hand {
  stroke: #d94f8d !important;
  animation-delay: 0.35s !important;
}

.typing-line-art .typing-hand--right {
  animation-delay: 0.55s !important;
}

.typing-line-art .screen-spark {
  stroke: #ff8fba !important;
  stroke-width: 4 !important;
  animation: screenBlink 1.8s ease-in-out infinite alternate !important;
}

.skills-list {
  position: relative;
  z-index: 2;
}

.skill-row {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(141, 47, 95, 0.12) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 244, 248, 0.78)),
    repeating-linear-gradient(0deg, rgba(84, 61, 68, 0.026) 0 1px, transparent 1px 6px) !important;
  box-shadow: 0 18px 42px rgba(141, 47, 95, 0.08) !important;
  transform-style: preserve-3d;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease !important;
}

.skill-row::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 79, 141, 0.26), transparent 62%);
  transition: transform 0.32s ease;
}

.skill-row::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  background: #ffb0ca;
  clip-path: polygon(50% 0, 60% 36%, 100% 50%, 60% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0;
  transform: rotate(0deg) scale(0.7);
  transition: opacity 0.25s ease, transform 0.32s ease;
}

.skill-row:hover {
  border-color: rgba(217, 79, 141, 0.32) !important;
  box-shadow: 0 30px 70px rgba(141, 47, 95, 0.16) !important;
  transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-10px) !important;
}

.skill-row:hover::before {
  transform: scale(1.35);
}

.skill-row:hover::after {
  opacity: 0.8;
  transform: rotate(22deg) scale(1);
}

.skill-index {
  color: #d94f8d !important;
  animation: numberPulse 3s ease-in-out infinite alternate;
}

.skill-copy li {
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.skill-copy li:hover {
  transform: translateY(-3px);
  background: #d94f8d !important;
  color: #fff !important;
}

.projects-panel {
  position: relative;
  overflow: hidden;
  padding-top: clamp(60px, 7vw, 100px) !important;
}

.projects-panel::after {
  content: "selected work";
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  top: clamp(22px, 4vw, 54px);
  color: rgba(217, 79, 141, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 8rem);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.projects-mega-title {
  position: relative;
  z-index: 2;
  color: #8d2f5f !important;
  text-shadow: 0 6px 0 rgba(217, 79, 141, 0.12);
}

.project-showcase-row {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: minmax(210px, 0.32fr) minmax(260px, 0.48fr) minmax(420px, 1fr) !important;
  gap: clamp(18px, 3vw, 44px) !important;
  align-items: start;
  padding: clamp(26px, 4vw, 52px) 0 !important;
  border-top: 1px solid rgba(141, 47, 95, 0.16) !important;
}

.project-showcase-row::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 30px;
  width: 9px;
  height: calc(100% - 60px);
  border-radius: 999px;
  background: linear-gradient(#d94f8d, #ffd5e3);
  opacity: 0.55;
}

.project-row-label {
  position: sticky;
  top: 24px;
}

.project-showcase-index {
  color: #d94f8d !important;
  text-shadow: 0 6px 0 rgba(217, 79, 141, 0.12);
}

.project-detail-copy {
  padding: 22px;
  border: 1px solid rgba(141, 47, 95, 0.12);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 45px rgba(141, 47, 95, 0.08);
}

.case-assets-grid,
.poster-assets-grid,
.social-assets-grid {
  display: grid !important;
  gap: 16px !important;
}

.case-assets-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.poster-assets-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.social-assets-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.case-assets-grid figure,
.poster-assets-grid figure,
.social-assets-grid figure {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 10px 12px 0 #ffd5e3, 0 22px 44px rgba(141, 47, 95, 0.12) !important;
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease !important;
}

.case-assets-grid figure:nth-child(2n),
.poster-assets-grid figure:nth-child(2n),
.social-assets-grid figure:nth-child(2n) {
  --tilt: 1deg;
}

.case-assets-grid figure:nth-child(2n + 1),
.poster-assets-grid figure:nth-child(2n + 1),
.social-assets-grid figure:nth-child(2n + 1) {
  --tilt: -0.8deg;
}

.case-assets-grid figure::after,
.poster-assets-grid figure::after,
.social-assets-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.42), transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.case-assets-grid figure:hover,
.poster-assets-grid figure:hover,
.social-assets-grid figure:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.025) !important;
  box-shadow: 14px 16px 0 #ffb0ca, 0 34px 70px rgba(141, 47, 95, 0.2) !important;
  filter: saturate(1.05);
}

.case-assets-grid figure:hover::after,
.poster-assets-grid figure:hover::after,
.social-assets-grid figure:hover::after {
  transform: translateX(120%);
}

.case-assets-grid img,
.poster-assets-grid img,
.social-assets-grid img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #fff !important;
}

@keyframes laptopFloat {
  from {
    transform: translateY(0) rotate(-1deg);
  }
  to {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes laptopDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes screenBlink {
  from {
    opacity: 0.28;
  }
  to {
    opacity: 1;
  }
}

@keyframes numberPulse {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5px);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .project-showcase-row {
    grid-template-columns: 1fr !important;
  }

  .project-row-label {
    position: static;
  }

  .poster-assets-grid,
  .case-assets-grid,
  .social-assets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .typing-line-art {
    width: min(100%, 300px) !important;
  }

  .poster-assets-grid,
  .case-assets-grid,
  .social-assets-grid {
    grid-template-columns: 1fr !important;
  }

  .project-detail-copy {
    padding: 18px;
  }
}

/* v53 corrections: cleaner skills flow, no skill boxes, no hero badge overlap. */
.fresh-cover__brand {
  right: clamp(22px, 5vw, 76px) !important;
  top: clamp(22px, 4vw, 42px) !important;
}

.fresh-cover__stamp {
  right: clamp(32px, 6vw, 96px) !important;
  top: clamp(142px, 13vw, 190px) !important;
}

.services-panel {
  display: block !important;
  padding-top: clamp(42px, 5vw, 72px) !important;
}

.services-panel::before {
  display: none !important;
}

.services-panel::after {
  right: -10vw !important;
  top: 18% !important;
  width: min(28vw, 310px) !important;
  height: min(28vw, 310px) !important;
}

.section-title--skills {
  position: relative;
  margin-bottom: clamp(34px, 5vw, 62px) !important;
}

.section-title--skills::after {
  content: "Skills that turn a rough idea into a complete visual world.";
  display: block;
  max-width: 760px;
  margin-top: 14px;
  color: #21171c;
  font-family: Manrope, sans-serif;
  font-size: clamp(1.4rem, 3vw, 3.1rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.07em;
  text-transform: none;
  text-shadow: none;
}

.typing-line-art {
  top: clamp(86px, 9vw, 130px) !important;
  right: clamp(18px, 6vw, 88px) !important;
  left: auto !important;
  width: min(23vw, 290px) !important;
  opacity: 0.84 !important;
}

.skills-list {
  gap: 0 !important;
  border-top: 1px solid rgba(141, 47, 95, 0.18);
}

.skill-row,
.skill-row:hover {
  overflow: visible !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(141, 47, 95, 0.18) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.skill-row::before,
.skill-row::after {
  display: none !important;
}

.skill-copy h3,
.skill-copy p,
.skill-copy li {
  transition: transform 0.26s ease, color 0.26s ease, letter-spacing 0.26s ease;
}

.skill-row:hover .skill-copy h3 {
  color: #d94f8d;
  letter-spacing: -0.04em;
  transform: translateX(10px);
}

.skill-row:hover .skill-copy p {
  transform: translateX(10px);
}

.skill-row:hover .skill-index {
  color: #8d2f5f !important;
  transform: rotate(-4deg) scale(1.06);
}

.skill-copy li,
.skill-copy li:hover {
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

.skill-copy li:hover {
  color: #d94f8d !important;
  transform: translateY(-3px) rotate(-1deg);
}

@media (max-width: 920px) {
  .fresh-cover__brand {
    right: 14px !important;
    top: 12px !important;
  }

  .fresh-cover__stamp {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    margin: 0 0 14px auto !important;
  }

  .typing-line-art {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: min(74vw, 300px) !important;
    margin: 0 0 20px auto !important;
  }
}

@media (max-width: 620px) {
  .section-title--skills::after {
    font-size: clamp(1.45rem, 8vw, 2.35rem);
  }
}

/* v54 shine glint for the big portfolio loop. */
.fresh-cover__scribble--one {
  overflow: hidden;
}

.fresh-cover__scribble--one::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: linear-gradient(
    115deg,
    transparent 0 42%,
    rgba(255, 255, 255, 0.05) 44%,
    rgba(255, 255, 255, 0.95) 49%,
    rgba(255, 215, 229, 0.55) 52%,
    transparent 58% 100%
  );
  transform: translateX(-125%) rotate(-10deg);
  animation: loopShine 3.6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.fresh-cover__scribble--one::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 14%;
  width: 18px;
  height: 18px;
  background: #fff;
  clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
  animation: sparkleBlink 1.8s ease-in-out infinite alternate;
}

@keyframes loopShine {
  0%,
  42% {
    transform: translateX(-125%) rotate(-10deg);
  }
  78%,
  100% {
    transform: translateX(125%) rotate(-10deg);
  }
}

@keyframes sparkleBlink {
  from {
    opacity: 0.25;
    transform: scale(0.75) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1.15) rotate(20deg);
  }
}

/* v55 contact contrast fix. */
.footer-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 176, 202, 0.18), transparent 18rem),
    linear-gradient(135deg, #5e2443, #8d2f5f 55%, #d94f8d) !important;
  color: #fff !important;
  border-top: 0 !important;
}

.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1.4px);
  background-size: auto, 18px 18px;
  pointer-events: none;
}

.footer-panel > * {
  position: relative;
  z-index: 1;
}

.footer-panel .section-kicker,
.footer-panel h2,
.footer-panel p,
.contact-links a,
.contact-links span {
  color: #fff !important;
  opacity: 1 !important;
}

.footer-panel h2 {
  text-shadow: 0 10px 26px rgba(42, 17, 28, 0.24);
}

.contact-links a {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(42, 17, 28, 0.18);
  backdrop-filter: blur(8px);
}

.contact-links a:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-4px);
}

.contact-icon {
  background: #fff !important;
  color: #8d2f5f !important;
  box-shadow: 0 8px 18px rgba(42, 17, 28, 0.16);
}

.contact-photo-card {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 14px 16px 0 rgba(255, 213, 227, 0.7), 0 26px 58px rgba(42, 17, 28, 0.22) !important;
}

/* v56 visible contact icons + stronger project grids. */
.contact-icon {
  display: inline-grid !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  place-items: center !important;
  border-radius: 18px !important;
  background: #fff !important;
  color: #8d2f5f !important;
  font-family: Manrope, sans-serif !important;
  font-size: 0 !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px rgba(42, 17, 28, 0.18) !important;
}

.contact-icon--mail::before {
  content: "@";
  font-size: 1.25rem;
}

.contact-icon--phone::before {
  content: "PH";
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.contact-icon--linkedin::before {
  content: "in";
  font-size: 1.15rem;
}

.contact-links a {
  gap: 16px !important;
  min-width: min(100%, 430px);
  color: #fff !important;
}

.contact-links a > span:last-child {
  color: #fff !important;
  opacity: 1 !important;
  overflow-wrap: anywhere;
}

.projects-panel {
  --grid-gap: clamp(14px, 1.8vw, 24px);
}

.case-assets-grid,
.poster-assets-grid,
.social-assets-grid {
  align-items: stretch;
  gap: var(--grid-gap) !important;
}

.case-assets-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.case-assets-grid figure:nth-child(1) {
  grid-column: span 3;
  aspect-ratio: 1 / 1;
}

.case-assets-grid figure:nth-child(2) {
  grid-column: span 3;
  aspect-ratio: 1 / 1;
}

.case-assets-grid figure:nth-child(3) {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}

.case-assets-grid figure:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 4 / 5;
}

.poster-assets-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.poster-assets-grid figure:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 3 / 4;
}

.poster-assets-grid figure:nth-child(2) {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}

.poster-assets-grid figure:nth-child(3) {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.social-assets-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.social-assets-grid figure:nth-child(1),
.social-assets-grid figure:nth-child(2) {
  grid-column: span 3;
  aspect-ratio: 4 / 5;
}

.social-assets-grid figure:nth-child(3),
.social-assets-grid figure:nth-child(4) {
  grid-column: span 3;
  aspect-ratio: 16 / 10;
}

.case-assets-grid figure,
.poster-assets-grid figure,
.social-assets-grid figure {
  display: grid !important;
  place-items: center !important;
  padding: clamp(8px, 1vw, 14px) !important;
  background:
    repeating-linear-gradient(0deg, rgba(84, 61, 68, 0.025) 0 1px, transparent 1px 6px),
    #fff !important;
}

.case-assets-grid img,
.poster-assets-grid img,
.social-assets-grid img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

@media (max-width: 980px) {
  .case-assets-grid,
  .poster-assets-grid,
  .social-assets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .case-assets-grid figure,
  .poster-assets-grid figure,
  .social-assets-grid figure {
    grid-column: span 1 !important;
    aspect-ratio: 1 / 1 !important;
  }

  .poster-assets-grid figure:nth-child(2),
  .poster-assets-grid figure:nth-child(3),
  .social-assets-grid figure:nth-child(4) {
    grid-column: span 2 !important;
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 620px) {
  .case-assets-grid,
  .poster-assets-grid,
  .social-assets-grid {
    grid-template-columns: 1fr !important;
  }

  .case-assets-grid figure,
  .poster-assets-grid figure,
  .social-assets-grid figure,
  .poster-assets-grid figure:nth-child(2),
  .poster-assets-grid figure:nth-child(3),
  .social-assets-grid figure:nth-child(4) {
    grid-column: span 1 !important;
    aspect-ratio: auto !important;
    min-height: 230px;
  }

  .contact-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 15px !important;
  }
}

/* v57 project image cleanup + visible contact icons + more projects CTA. */
.case-assets-grid,
.poster-assets-grid,
.social-assets-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start !important;
}

.case-assets-grid figure,
.poster-assets-grid figure,
.social-assets-grid figure,
.case-assets-grid figure:nth-child(n),
.poster-assets-grid figure:nth-child(n),
.social-assets-grid figure:nth-child(n) {
  grid-column: auto !important;
  aspect-ratio: auto !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 12px !important;
}

.case-assets-grid figure:nth-child(3),
.poster-assets-grid figure:nth-child(2),
.poster-assets-grid figure:nth-child(3),
.social-assets-grid figure:nth-child(3),
.social-assets-grid figure:nth-child(4) {
  grid-column: span 2 !important;
}

.case-assets-grid img,
.poster-assets-grid img,
.social-assets-grid img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

.footer-panel .contact-links .contact-icon {
  color: #8d2f5f !important;
  background: #fff !important;
  font-size: 0.92rem !important;
  text-indent: 0 !important;
}

.footer-panel .contact-links .contact-icon--mail {
  font-size: 1.35rem !important;
}

.footer-panel .contact-links .contact-icon--phone {
  font-size: 0.78rem !important;
}

.footer-panel .contact-links .contact-icon--linkedin {
  font-size: 1.2rem !important;
}

.footer-panel .contact-links .contact-icon::before {
  display: none !important;
}

.more-projects-panel {
  position: relative;
  overflow: hidden;
  margin-top: clamp(34px, 5vw, 70px);
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(141, 47, 95, 0.16);
  background:
    radial-gradient(circle at 84% 24%, rgba(217, 79, 141, 0.18), transparent 12rem),
    repeating-linear-gradient(0deg, rgba(84, 61, 68, 0.03) 0 1px, transparent 1px 6px),
    rgba(255, 255, 255, 0.62);
  box-shadow: 14px 16px 0 #ffd5e3, 0 26px 64px rgba(141, 47, 95, 0.1);
}

.more-projects-panel::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  top: 50%;
  width: 74px;
  height: 74px;
  background: #d94f8d;
  clip-path: polygon(50% 0, 60% 36%, 100% 50%, 60% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  animation: orbitStar 4s linear infinite;
  opacity: 0.85;
}

.more-projects-panel p {
  margin: 0 0 8px;
  color: #8d2f5f;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.more-projects-panel h3 {
  margin: 0;
  color: #d94f8d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.1em;
}

.more-projects-panel span {
  display: block;
  margin-top: 18px;
  color: #21171c;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 750;
}

@media (max-width: 620px) {
  .case-assets-grid,
  .poster-assets-grid,
  .social-assets-grid {
    grid-template-columns: 1fr !important;
  }

  .case-assets-grid figure:nth-child(n),
  .poster-assets-grid figure:nth-child(n),
  .social-assets-grid figure:nth-child(n) {
    grid-column: auto !important;
  }

  .more-projects-panel {
    padding: 30px 20px;
  }

  .more-projects-panel::after {
    width: 46px;
    height: 46px;
    right: 16px;
    top: 18px;
  }
}

/* v48 richer branding, complete loop ornaments, animated Aadishree line. */
.fresh-cover__brand {
  left: auto !important;
  right: clamp(24px, 5vw, 72px) !important;
  top: clamp(22px, 4vw, 46px) !important;
  gap: 14px !important;
  padding: 14px 22px 14px 14px !important;
  border: 2px solid rgba(141, 47, 95, 0.18) !important;
  background: rgba(255, 255, 255, 0.84) !important;
  box-shadow: 0 22px 50px rgba(141, 47, 95, 0.16), 7px 8px 0 rgba(255, 213, 227, 0.95) !important;
}

.fresh-cover__brand img {
  width: 62px !important;
  height: 62px !important;
  object-fit: contain !important;
  box-shadow: 0 10px 24px rgba(141, 47, 95, 0.18);
}

.fresh-cover__brand span {
  color: #8d2f5f !important;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem) !important;
  font-weight: 950 !important;
  letter-spacing: -0.03em;
}

.fresh-cover__brand span::after {
  content: "Brand identity / creative studio";
  display: block;
  margin-top: 4px;
  color: #d94f8d;
  font-size: 0.68em;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fresh-cover__scribble {
  border-color: #d94f8d !important;
  border-style: solid !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55), 0 0 0 1px rgba(217, 79, 141, 0.08);
}

.fresh-cover__scribble--one {
  border-bottom-color: #d94f8d !important;
  border-left-color: #d94f8d !important;
  border-right-color: #d94f8d !important;
  border-top-color: #d94f8d !important;
  border-radius: 48% 52% 46% 54% / 50% 44% 56% 50% !important;
  opacity: 0.76 !important;
}

.fresh-cover__scribble--two {
  border-bottom-color: #d94f8d !important;
  border-left-color: #d94f8d !important;
  border-right-color: #d94f8d !important;
  border-top-color: #d94f8d !important;
  border-radius: 50% !important;
  opacity: 0.72 !important;
}

.fresh-cover__masthead span {
  position: relative;
  overflow: hidden;
  animation: aadishreeLineFloat 4.6s ease-in-out infinite alternate;
}

.fresh-cover__masthead span::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-18deg);
  animation: aadishreeShine 3.2s ease-in-out infinite;
}

.fresh-cover__star {
  transform-origin: 50% 50%;
  animation: orbitStar 4.2s linear infinite, freshStarPulse 2.8s ease-in-out infinite alternate !important;
}

.fresh-cover__star--three {
  right: 31%;
  top: 38%;
  width: 42px;
  height: 42px;
  background: #ffb0ca;
  animation-delay: -0.8s !important;
}

.fresh-cover__flower--three {
  left: 5%;
  top: 34%;
  width: 62px;
  height: 62px;
  animation-duration: 12s;
}

.fresh-cover__flower--four {
  right: 12%;
  bottom: 7%;
  width: 48px;
  height: 48px;
  animation-duration: 7.5s;
  animation-direction: reverse;
}

@keyframes orbitStar {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}

@keyframes aadishreeLineFloat {
  0% {
    transform: translateY(0);
    letter-spacing: 0.08em;
  }
  100% {
    transform: translateY(-5px);
    letter-spacing: 0.11em;
  }
}

@keyframes aadishreeShine {
  0% {
    left: -45%;
  }
  48%,
  100% {
    left: 120%;
  }
}

@media (max-width: 920px) {
  .fresh-cover__brand {
    left: auto !important;
    right: 14px !important;
    top: 12px !important;
    padding: 9px 12px 9px 9px !important;
  }

  .fresh-cover__brand img {
    width: 42px !important;
    height: 42px !important;
  }

  .fresh-cover__brand span {
    font-size: 0.9rem !important;
  }

  .fresh-cover__brand span::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .fresh-cover__brand {
    max-width: 190px;
  }

  .fresh-cover__star--three,
  .fresh-cover__flower--three,
  .fresh-cover__flower--four {
    display: none;
  }
}

/* v46 mobile polish for full cover. */
@media (max-width: 920px) {
  .fresh-cover__brand {
    position: absolute !important;
    left: 14px !important;
    top: 12px !important;
    margin: 0 !important;
    max-width: calc(100vw - 28px);
  }

  .fresh-cover__masthead {
    padding-top: 58px !important;
  }
}

@media (max-width: 560px) {
  .fresh-cover {
    overflow: hidden;
  }

  body,
  .site-shell {
    overflow-x: hidden;
  }

  .fresh-cover__masthead h1 {
    font-size: clamp(4.1rem, 20vw, 5.8rem) !important;
    line-height: 0.82 !important;
    letter-spacing: -0.125em !important;
    transform: translateX(-2vw) !important;
  }

  .fresh-cover__masthead p {
    font-size: clamp(1.8rem, 8.8vw, 2.9rem) !important;
  }

  .fresh-cover__masthead span {
    width: 100%;
    max-width: calc(100vw - 32px);
    white-space: normal;
    line-height: 1.35;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .fresh-cover__polaroid {
    width: min(calc(100vw - 42px), 320px) !important;
    box-sizing: border-box;
    justify-self: center;
  }

  .fresh-cover__polaroid li {
    grid-template-columns: 62px minmax(0, 1fr);
    font-size: 0.9rem;
  }

  .fresh-cover__polaroid li:last-child {
    display: none;
  }

  .fresh-cover__about {
    width: 100%;
    overflow: hidden;
  }
}

/* v44 brand identity + richer cover decorations. */
.fresh-cover [data-reveal],
.fresh-cover [data-reveal].is-visible,
.fresh-cover__masthead,
.fresh-cover__polaroid,
.fresh-cover__about {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
}

.fresh-cover__brand {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  top: clamp(16px, 3vw, 34px);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px 12px 12px;
  border: 1px solid rgba(141, 47, 95, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #8d2f5f;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(141, 47, 95, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fresh-cover__brand:hover,
.fresh-cover__brand:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 46px rgba(141, 47, 95, 0.16);
}

.fresh-cover__brand img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.fresh-cover__brand span {
  font-size: 1.08rem;
}

.fresh-cover__star,
.fresh-cover__flower {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.fresh-cover__star {
  width: 58px;
  height: 58px;
  background: #d94f8d;
  clip-path: polygon(50% 0, 60% 36%, 100% 50%, 60% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.88;
  animation: freshStarPulse 4.8s ease-in-out infinite alternate;
}

.fresh-cover__star--one {
  right: 18%;
  top: 26%;
}

.fresh-cover__star--two {
  left: 11%;
  bottom: 19%;
  width: 34px;
  height: 34px;
  background: #ff9fbd;
  animation-delay: -1.4s;
}

.fresh-cover__flower {
  width: 76px;
  height: 76px;
  background:
    radial-gradient(circle at center, #8d2f5f 0 14%, transparent 15%),
    radial-gradient(circle at 50% 12%, #ffc4d7 0 18%, transparent 19%),
    radial-gradient(circle at 88% 50%, #ffc4d7 0 18%, transparent 19%),
    radial-gradient(circle at 50% 88%, #ffc4d7 0 18%, transparent 19%),
    radial-gradient(circle at 12% 50%, #ffc4d7 0 18%, transparent 19%);
  opacity: 0.82;
  animation: freshFlowerSpin 10s linear infinite;
}

.fresh-cover__flower--one {
  right: 5%;
  bottom: 20%;
}

.fresh-cover__flower--two {
  left: 28%;
  top: 45%;
  width: 42px;
  height: 42px;
  animation-duration: 8s;
  animation-direction: reverse;
}

@keyframes freshStarPulse {
  0% {
    transform: rotate(0deg) scale(0.9);
  }
  100% {
    transform: rotate(18deg) scale(1.12);
  }
}

@keyframes freshFlowerSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 920px) {
  .fresh-cover__brand {
    position: relative;
    left: auto;
    top: auto;
    width: max-content;
    margin-bottom: 14px;
  }
}

@media (max-width: 560px) {
  .fresh-cover__brand span {
    font-size: 0.85rem;
  }

  .fresh-cover__star--one {
    right: 6%;
    top: 23%;
  }

  .fresh-cover__star--two,
  .fresh-cover__flower--two {
    display: none;
  }

  .fresh-cover__flower--one {
    right: 4%;
    bottom: 8%;
    width: 54px;
    height: 54px;
  }
}

@keyframes introPhotoFloat {
  from {
    transform: translateY(0) rotate(-1deg);
  }
  to {
    transform: translateY(-12px) rotate(1.4deg);
  }
}

@keyframes topbarFloat {
  from {
    transform: translateY(0) rotateX(0deg);
  }
  to {
    transform: translateY(-5px) rotateX(2deg);
  }
}

@keyframes nameLift {
  from {
    transform: perspective(900px) rotateX(3deg) rotateY(-7deg) translateY(0);
  }
  to {
    transform: perspective(900px) rotateX(0deg) rotateY(-3deg) translateY(-8px);
  }
}

@keyframes nameGlow {
  from {
    opacity: 0.45;
    transform: translateX(-18px) skewX(-18deg);
  }
  to {
    opacity: 0.95;
    transform: translateX(18px) skewX(-18deg);
  }
}

@keyframes cardHover3d {
  from {
    transform: rotateX(7deg) rotateY(-8deg) translateY(0);
  }
  to {
    transform: rotateX(2deg) rotateY(5deg) translateY(-9px);
  }
}

@media (max-width: 1100px) {
  .intro-panel .bio-open-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "photo"
      "tools";
  }

  .intro-skill-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-panel .bio-photo-plain {
    justify-self: start;
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .intro-panel {
    min-height: auto;
    padding-top: 12px;
  }

  .intro-nav {
    width: 100%;
    align-items: flex-start;
    border-radius: 24px;
  }

  .intro-nav,
  .intro-nav-links {
    flex-direction: column;
  }

  .intro-nav span,
  .intro-nav a {
    padding: 9px 11px;
    font-size: 0.68rem;
  }

  .intro-panel .bio-mega-title {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .intro-name::after {
    left: 48%;
    top: 76%;
  }

  .intro-panel .bio-photo-plain {
    width: min(100%, 310px);
  }

  .intro-dots,
  .intro-orb--two {
    display: none;
  }

  .intro-skill-deck {
    grid-template-columns: 1fr;
  }

  .intro-photo-caption {
    text-align: left;
    margin-left: 0;
  }
}

/* Full first-page rebuild: cleaner editorial landing screen */
.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  grid-template-areas:
    "nav nav"
    "title photo"
    "copy tools";
  align-items: start;
  gap: clamp(16px, 2.2vw, 34px) clamp(28px, 4vw, 68px);
  min-height: calc(100vh - 18px);
  padding: clamp(18px, 2vw, 30px) clamp(28px, 4vw, 70px) clamp(24px, 3vw, 44px);
  background:
    radial-gradient(circle at 12% 10%, rgba(230, 148, 173, 0.2), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.82), transparent 15%),
    linear-gradient(120deg, rgba(255, 247, 250, 0.98) 0 48%, rgba(255, 224, 235, 0.94) 48% 100%),
    url("./assets/paper-texture.svg");
}

.intro-panel::before {
  inset: 10% -10% auto auto;
  width: min(38vw, 560px);
  height: min(38vw, 560px);
  border-radius: 42% 58% 48% 52%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(244, 184, 198, 0.22)),
    url("./assets/paper-texture.svg");
  box-shadow: 0 30px 90px rgba(116, 77, 90, 0.12);
}

.intro-panel::after {
  content: "";
  right: 5%;
  bottom: 5%;
  width: min(36vw, 560px);
  height: 150px;
  opacity: 0.34;
  background-image: radial-gradient(circle, rgba(97, 73, 82, 0.32) 0 3px, transparent 4px);
  background-size: 28px 28px;
  transform: rotate(-8deg);
}

.intro-orb--one,
.intro-orb--two,
.intro-dots,
.sticker--palette,
.sticker--flower-dark {
  display: none;
}

.intro-nav {
  grid-area: nav;
  width: 100%;
  margin: 0;
  padding: 10px;
  border-radius: 24px;
  background: rgba(45, 23, 31, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 52px rgba(116, 77, 90, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: none;
}

.intro-brand {
  color: #fff8fb;
}

.intro-brand::before {
  color: #2d171f;
  background: linear-gradient(145deg, #fff8fb, #e694ad);
}

.intro-nav span,
.intro-nav a {
  color: rgba(255, 248, 251, 0.76);
}

.intro-nav-links a {
  color: #2d171f;
  background: linear-gradient(145deg, #fff8fb, #f4b8c6);
}

.bio-intro {
  grid-area: title;
  align-self: end;
}

.intro-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #614952;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(230, 148, 173, 0.26);
  box-shadow: 0 12px 28px rgba(116, 77, 90, 0.08);
}

.intro-panel .bio-mega-title {
  max-width: 1000px;
  margin: 0;
  color: #24181c;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4.3rem, 11vw, 12rem);
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.intro-hello {
  display: block;
  margin-bottom: 0.04em;
  font-size: 0.42em;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.intro-name {
  display: block;
  color: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #24181c;
  text-shadow:
    4px 4px 0 #e694ad,
    8px 8px 0 rgba(255, 255, 255, 0.92),
    18px 22px 44px rgba(116, 77, 90, 0.22);
  transform: none;
  animation: namePulseClean 4s ease-in-out infinite alternate;
}

.intro-name::before {
  inset: auto 0 -0.08em 0.04em;
  height: 0.12em;
  background: linear-gradient(90deg, #e23664, #ffb3c8, #e23664);
  filter: none;
  opacity: 0.8;
  transform: skewX(-18deg);
  animation: underlineSlide 3.4s ease-in-out infinite alternate;
}

.intro-name::after {
  content: "portfolio";
  left: auto;
  right: 0.04em;
  top: auto;
  bottom: -0.28em;
  color: #e23664;
  font-family: "Poiret One", cursive;
  font-size: 0.18em;
  letter-spacing: 0.18em;
  transform: rotate(-3deg);
}

.intro-panel .bio-open-layout {
  display: contents;
}

.intro-panel .bio-copy--plain {
  grid-area: copy;
  max-width: 700px;
  align-self: start;
}

.intro-panel .bio-window-label {
  display: none;
}

.intro-panel .bio-lead {
  margin-bottom: 14px;
  max-width: 680px;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.55;
}

.intro-panel .bio-copy > p {
  max-width: 680px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.intro-panel .bio-highlights {
  gap: 10px;
  margin-top: 18px;
}

.intro-panel .bio-highlights span {
  padding: 9px 13px;
  border: 1px solid rgba(230, 148, 173, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.intro-panel .bio-photo-plain {
  grid-area: photo;
  align-self: center;
  justify-self: center;
  width: min(100%, 360px);
  transform: rotate(2deg);
}

.intro-panel .bio-photo-plain img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 14px solid #fff8fb;
  border-radius: 34px;
  box-shadow:
    0 28px 70px rgba(116, 77, 90, 0.24),
    -18px 18px 0 rgba(230, 148, 173, 0.42);
}

.intro-photo-caption {
  display: none;
}

.intro-panel .bio-side-info {
  grid-area: tools;
  align-self: stretch;
  max-width: none;
}

.intro-panel .bio-side-info h3,
.intro-panel .bio-service-tags,
.intro-panel .bio-company-mark {
  display: none;
}

.intro-skill-deck {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  gap: 10px;
  height: 100%;
  margin-top: 0;
}

.intro-skill-deck article {
  min-height: 112px;
  padding: 14px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(97, 73, 82, 0.96), rgba(148, 91, 116, 0.9)),
    url("./assets/paper-texture.svg");
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 34px rgba(116, 77, 90, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: none;
  animation: cardSoftLift 5s ease-in-out infinite alternate;
}

.intro-skill-deck span {
  width: auto;
  height: auto;
  margin-bottom: 10px;
  color: #ffc7d8;
  background: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.intro-skill-deck strong {
  color: #fff8fb;
}

.intro-skill-deck p {
  color: rgba(255, 248, 251, 0.76);
}

@keyframes namePulseClean {
  from {
    transform: translateY(0);
    text-shadow:
      4px 4px 0 #e694ad,
      8px 8px 0 rgba(255, 255, 255, 0.92),
      18px 22px 44px rgba(116, 77, 90, 0.22);
  }
  to {
    transform: translateY(-7px);
    text-shadow:
      5px 5px 0 #e694ad,
      10px 10px 0 rgba(255, 255, 255, 0.92),
      24px 30px 54px rgba(116, 77, 90, 0.28);
  }
}

@keyframes underlineSlide {
  from {
    transform: translateX(-12px) skewX(-18deg);
  }
  to {
    transform: translateX(12px) skewX(-18deg);
  }
}

@keyframes cardSoftLift {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@media (max-width: 1100px) {
  .intro-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "title"
      "photo"
      "copy"
      "tools";
  }

  .intro-panel .bio-photo-plain {
    justify-self: start;
  }

  .intro-skill-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .intro-panel {
    padding: 14px;
  }

  .intro-panel .bio-mega-title {
    font-size: clamp(3.8rem, 18vw, 6.4rem);
  }

  .intro-name {
    -webkit-text-stroke-width: 1px;
  }

  .intro-skill-deck {
    grid-template-columns: 1fr;
  }
}

/* Clean reference-inspired landing page */
.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "nav"
    "title"
    "copy"
    "tools";
  justify-items: center;
  align-items: start;
  gap: clamp(18px, 2.7vw, 36px);
  min-height: calc(100vh - 18px);
  padding: clamp(18px, 2.3vw, 36px) clamp(18px, 4vw, 72px) clamp(36px, 5vw, 80px);
  color: #1f1720;
  background:
    radial-gradient(circle at 18% 24%, rgba(230, 148, 173, 0.2), transparent 19%),
    radial-gradient(circle at 78% 17%, rgba(255, 255, 255, 0.95), transparent 16%),
    radial-gradient(circle at 54% 54%, rgba(255, 255, 255, 0.62), transparent 26%),
    linear-gradient(135deg, #fff8fb 0%, #ffe2ec 50%, #fffafc 100%),
    url("./assets/paper-texture.svg");
}

.intro-panel::before {
  content: "";
  position: absolute;
  inset: 22% auto auto 12%;
  width: 90px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(145deg, #e694ad, #fff8fb);
  box-shadow: 18px 18px 0 rgba(97, 73, 82, 0.18), 0 24px 44px rgba(116, 77, 90, 0.16);
  transform: rotate(-20deg);
  animation: cleanTileFloat 7s ease-in-out infinite alternate;
}

.intro-panel::after {
  content: "";
  position: absolute;
  inset: 25% 14% auto auto;
  width: 92px;
  height: 64px;
  border-radius: 20px;
  opacity: 1;
  background: linear-gradient(145deg, #614952, #b76d91);
  box-shadow: 18px 18px 0 rgba(45, 23, 31, 0.2), 0 24px 44px rgba(116, 77, 90, 0.16);
  transform: rotate(16deg);
  animation: cleanTileFloat 7s ease-in-out -2s infinite alternate;
}

.intro-panel > * {
  position: relative;
  z-index: 1;
}

.intro-orb--one,
.intro-orb--two,
.intro-dots,
.sticker--palette,
.sticker--flower-dark,
.intro-panel .bio-photo-plain {
  display: none;
}

.intro-floating-photo {
  position: absolute;
  z-index: 0;
  width: clamp(118px, 13vw, 210px);
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(230, 148, 173, 0.18);
  box-shadow:
    0 26px 60px rgba(116, 77, 90, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  pointer-events: none;
}

.intro-floating-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.88) contrast(1.03);
}

.intro-floating-photo--left {
  left: clamp(30px, 8vw, 150px);
  top: 34%;
  transform: rotate(-13deg);
  animation: cleanPhotoFloatLeft 8s ease-in-out infinite alternate;
}

.intro-floating-photo--left img {
  object-fit: contain;
  background: linear-gradient(180deg, #fff8fb, #ffe5ee);
}

.intro-floating-photo--right {
  right: clamp(28px, 8vw, 150px);
  top: 43%;
  width: clamp(150px, 16vw, 260px);
  transform: rotate(8deg);
  animation: cleanPhotoFloatRight 8s ease-in-out -1.6s infinite alternate;
}

.intro-floating-photo--right::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 76px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 223, 232, 0.82);
  border: 1px solid rgba(230, 148, 173, 0.22);
  transform: translateX(-50%) rotate(2deg);
  box-shadow: 0 10px 22px rgba(116, 77, 90, 0.12);
  z-index: 2;
}

.intro-floating-photo--right img {
  object-position: 50% 36%;
}

.intro-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.intro-deco--flower,
.intro-deco--flower-small {
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff8fb 0 16%, transparent 17%),
    radial-gradient(circle at 50% 4%, #e694ad 0 24%, transparent 25%),
    radial-gradient(circle at 96% 50%, #f4b8c6 0 24%, transparent 25%),
    radial-gradient(circle at 50% 96%, #e694ad 0 24%, transparent 25%),
    radial-gradient(circle at 4% 50%, #f4b8c6 0 24%, transparent 25%);
  box-shadow: 0 18px 42px rgba(230, 148, 173, 0.22);
  animation: flowerSpinFloat 10s ease-in-out infinite alternate;
}

.intro-deco--flower {
  left: 8%;
  bottom: 16%;
  width: 86px;
  height: 86px;
  opacity: 0.72;
}

.intro-deco--flower-small {
  right: 20%;
  bottom: 18%;
  width: 52px;
  height: 52px;
  opacity: 0.58;
  animation-delay: -2.4s;
}

.intro-deco--brush {
  left: 18%;
  top: 66%;
  width: 190px;
  height: 28px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(97, 73, 82, 0.92) 0 62%, rgba(255, 221, 154, 0.92) 62% 80%, rgba(230, 148, 173, 0.92) 80% 100%);
  box-shadow: 0 18px 36px rgba(116, 77, 90, 0.14);
  transform: rotate(-12deg);
  animation: brushDrift 8s ease-in-out infinite alternate;
}

.intro-deco--brush::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  width: 34px;
  height: 22px;
  background: #f2a7be;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.intro-deco--sparkles {
  right: 10%;
  bottom: 12%;
  width: 180px;
  height: 120px;
  opacity: 0.55;
  background-image:
    radial-gradient(circle, rgba(230, 148, 173, 0.75) 0 4px, transparent 5px),
    radial-gradient(circle, rgba(97, 73, 82, 0.35) 0 2px, transparent 3px);
  background-size: 30px 30px, 48px 48px;
  transform: rotate(-12deg);
  animation: sparkleSlide 7s ease-in-out infinite alternate;
}

.intro-nav {
  grid-area: nav;
  display: flex;
  width: min(100%, 1120px);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto clamp(16px, 3vw, 42px);
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(230, 148, 173, 0.16);
  box-shadow: 0 22px 60px rgba(116, 77, 90, 0.14);
  backdrop-filter: blur(16px);
  animation: none;
}

.intro-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2d171f;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
  transform-origin: center;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.intro-brand.is-popped {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 22px rgba(116, 77, 90, 0.18));
}

.intro-brand::before {
  display: none;
}

.intro-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(97, 73, 82, 0.16);
}

.intro-brand span {
  font-size: 1rem;
}

.intro-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.intro-nav span,
.intro-nav a {
  padding: 8px 4px;
  color: rgba(36, 24, 28, 0.62);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.intro-nav-links a:not(:last-child) {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.intro-nav-links a:not(:last-child):hover {
  color: #2d171f;
  transform: translateY(-2px);
}

.intro-nav-links a:last-child {
  padding: 14px 24px;
  color: #fff8fb;
  border-radius: 999px;
  background: #2d171f;
  box-shadow: 0 14px 26px rgba(45, 23, 31, 0.2);
}

.intro-nav-links a:last-child {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.intro-nav-links a:last-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(45, 23, 31, 0.26);
}

.bio-intro {
  grid-area: title;
  align-self: center;
  justify-self: center;
  text-align: center;
  animation: heroContentRise 0.9s ease-out both;
}

.intro-kicker {
  display: inline-flex;
  margin: 0 0 clamp(18px, 2.2vw, 28px);
  padding: 11px 18px;
  border-radius: 999px;
  color: #614952;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(230, 148, 173, 0.18);
  box-shadow: 0 16px 32px rgba(116, 77, 90, 0.1);
  font-size: clamp(0.78rem, 1.05vw, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-panel .bio-mega-title {
  max-width: 1120px;
  margin: 0 auto;
  color: #211922;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.8rem, 8.2vw, 8.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  overflow: visible;
}

.intro-hello {
  display: block;
  margin: 0;
  color: #211922;
  font-size: 0.9em;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.intro-name {
  position: relative;
  display: block;
  color: transparent;
  font-family: "Manrope", sans-serif;
  font-size: 1.02em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: none;
  -webkit-text-stroke: 0;
  background: linear-gradient(100deg, #2d171f 0%, #e386a5 32%, #fff3f7 46%, #d75d90 62%, #2d171f 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  animation:
    cleanWordPulse 4s ease-in-out infinite alternate,
    nameGradientFlow 5s ease-in-out infinite alternate;
}

.intro-name::before {
  display: none;
}

.intro-name::after {
  content: "";
  position: absolute;
  left: 0.12em;
  right: 0.12em;
  bottom: -0.02em;
  display: block;
  height: 0.06em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(230, 148, 173, 0.9), rgba(255, 243, 247, 0.9), transparent);
  filter: drop-shadow(0 12px 18px rgba(230, 148, 173, 0.28));
  transform-origin: left center;
  animation: nameUnderlineSweep 3.6s ease-in-out infinite;
}

.intro-panel .bio-open-layout {
  display: contents;
}

.intro-panel .bio-copy--plain {
  grid-area: copy;
  max-width: 760px;
  text-align: center;
  animation: heroContentRise 1.05s ease-out both;
}

.intro-panel .bio-window-label,
.intro-panel .bio-copy--plain > p:not(.bio-lead),
.intro-panel .bio-highlights {
  display: none;
}

.intro-panel .bio-lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(36, 24, 28, 0.58);
  font-size: clamp(1.08rem, 1.5vw, 1.4rem);
  line-height: 1.7;
}

.intro-panel .bio-side-info {
  grid-area: tools;
  width: min(100%, 720px);
  max-width: none;
  animation: heroContentRise 1.2s ease-out both;
}

.intro-panel .bio-side-info h3,
.intro-panel .bio-service-tags,
.intro-panel .bio-company-mark {
  display: none;
}

.intro-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  justify-items: center;
  margin-top: 10px;
}

.intro-facts span {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: rgba(36, 24, 28, 0.72);
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
  animation: factFadeUp 0.85s ease-out both;
}

.intro-facts span:nth-child(1) {
  animation-delay: 0.12s;
}

.intro-facts span:nth-child(2) {
  animation-delay: 0.24s;
}

.intro-facts span:nth-child(3) {
  animation-delay: 0.36s;
}

.intro-facts span:nth-child(4) {
  animation-delay: 0.48s;
}

.intro-facts span::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 148, 173, 0.9), rgba(255, 243, 247, 0.95));
  box-shadow: 0 0 0 4px rgba(230, 148, 173, 0.08);
  flex: 0 0 auto;
}

.intro-facts span:last-child::after {
  display: none;
}

@keyframes cleanTileFloat {
  from {
    transform: translateY(0) rotate(-18deg);
  }
  to {
    transform: translateY(-18px) rotate(-10deg);
  }
}

@keyframes cleanWordPulse {
  from {
    filter: drop-shadow(0 0 0 rgba(230, 148, 173, 0));
  }
  to {
    filter: drop-shadow(0 14px 28px rgba(230, 148, 173, 0.24));
  }
}

@keyframes nameGradientFlow {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 100% center;
  }
}

@keyframes nameUnderlineSweep {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.25) translateX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1) translateX(0.04em);
  }
}

@keyframes deckCardFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5px);
  }
}

@keyframes cleanPhotoFloatLeft {
  from {
    transform: translateY(0) rotate(-13deg);
  }
  to {
    transform: translateY(-18px) rotate(-8deg);
  }
}

@keyframes cleanPhotoFloatRight {
  from {
    transform: translateY(0) rotate(10deg);
  }
  to {
    transform: translateY(-16px) rotate(5deg);
  }
}

@keyframes flowerSpinFloat {
  from {
    transform: translateY(0) rotate(-8deg) scale(1);
  }
  to {
    transform: translateY(-16px) rotate(12deg) scale(1.05);
  }
}

@keyframes brushDrift {
  from {
    transform: translateY(0) rotate(-12deg);
  }
  to {
    transform: translateY(-14px) rotate(-7deg);
  }
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes factFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .about-panel {
    padding: 36px 24px;
  }

  .about-panel__points {
    grid-template-columns: 1fr;
  }

  .intro-nav,
  .intro-nav-links {
    flex-direction: column;
  }

  .intro-nav {
    border-radius: 28px;
  }

  .intro-floating-photo {
    opacity: 0.42;
    width: 120px;
  }

  .intro-floating-photo--right {
    width: 145px;
    right: 18px;
    top: 38%;
  }

  .intro-deco--brush,
  .intro-deco--sparkles {
    opacity: 0.35;
  }
}

@media (max-width: 620px) {
  .about-panel__copy h2 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .about-panel__copy p,
  .about-panel__points span {
    font-size: 0.94rem;
  }

  .intro-panel {
    min-height: auto;
    padding: 14px;
  }

  .intro-panel .bio-mega-title {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .intro-nav-links {
    gap: 4px;
  }

  .intro-facts {
    gap: 10px;
  }

  .intro-facts span {
    font-size: 0.95rem;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .intro-facts span::after {
    display: none;
  }

  .intro-floating-photo {
    display: none;
  }

  .intro-deco {
    display: none;
  }
}

@media (max-width: 900px) {
  .services-panel,
  .projects-panel,
  .about-panel,
  .footer-panel {
    padding: 34px 22px;
  }

  .intro-panel {
    min-height: auto;
    padding: 18px 18px 30px;
  }

  .intro-nav {
    width: 100%;
    gap: 14px;
    padding: 14px 16px;
  }

  .intro-brand {
    width: 100%;
    justify-content: center;
  }

  .intro-nav-links {
    width: 100%;
    justify-content: center;
    flex-direction: row;
    gap: 10px 22px;
  }

  .intro-nav-links a:last-child {
    padding: 12px 20px;
  }

  .intro-panel .bio-mega-title {
    max-width: 100%;
    font-size: clamp(3.5rem, 11vw, 6rem);
  }

  .intro-panel .bio-lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
  }

  .intro-facts {
    gap: 10px 14px;
  }

  .intro-facts span {
    font-size: 0.92rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .project-showcase-row {
    gap: 18px;
    padding-top: 34px;
  }

  .project-row-label h3,
  .project-detail-copy h3 {
    max-width: none;
  }

  .project-row-label p,
  .project-detail-copy p:not(.project-type) {
    max-width: none;
  }

  .project-showcase-row + .project-showcase-row {
    margin-top: 32px;
  }

  .contact-links {
    width: 100%;
    align-items: flex-start;
  }

  .contact-links a {
    width: 100%;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-links a > span:last-child {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: calc(100% - 8px);
    margin: 4px auto;
  }

  .paper-panel,
  .dark-panel {
    border-radius: 16px;
  }

  .intro-panel {
    padding: 14px 14px 24px;
  }

  .intro-nav {
    border-radius: 22px;
    padding: 14px 12px;
    margin-bottom: 18px;
  }

  .intro-brand {
    gap: 10px;
  }

  .intro-brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .intro-brand span {
    font-size: 0.95rem;
  }

  .intro-nav-links {
    gap: 8px 16px;
    justify-content: center;
  }

  .intro-nav a {
    font-size: 0.88rem;
  }

  .intro-nav-links a:last-child {
    width: auto;
    min-width: 170px;
    margin-top: 4px;
    text-align: center;
    justify-content: center;
  }

  .bio-intro {
    text-align: left;
    justify-self: stretch;
  }

  .intro-kicker {
    margin-bottom: 12px;
    padding: 9px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .intro-panel .bio-mega-title {
    font-size: clamp(2.8rem, 16vw, 4.7rem);
    line-height: 0.94;
  }

  .intro-name {
    background: linear-gradient(100deg, #2d171f 0%, #8a4b65 42%, #d97b9f 100%);
    background-size: 180% auto;
  }

  .intro-hello,
  .intro-name {
    display: block;
  }

  .intro-panel .bio-copy--plain,
  .intro-panel .bio-side-info {
    width: 100%;
    max-width: 100%;
    text-align: left;
    justify-self: stretch;
  }

  .intro-panel .bio-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .intro-facts {
    justify-content: flex-start;
    gap: 10px;
  }

  .intro-facts span {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    color: rgba(36, 24, 28, 0.86);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.45;
  }

  .intro-facts span::after {
    display: none;
  }

  .section-title--skills,
  .projects-mega-title {
    font-size: clamp(3rem, 16vw, 4.8rem);
    margin-bottom: 20px;
  }

  .skill-row {
    gap: 10px;
    padding: 28px 0 34px;
  }

  .skill-index,
  .project-showcase-index {
    font-size: clamp(3.2rem, 19vw, 5rem);
  }

  .skill-copy h3,
  .project-row-label h3,
  .project-detail-copy h3 {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
    line-height: 1.05;
  }

  .skill-copy p,
  .project-row-label p,
  .project-detail-copy p:not(.project-type),
  .skills-side-note p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .skill-copy li {
    width: 100%;
    text-align: center;
  }

  .case-assets-grid,
  .poster-assets-grid,
  .social-assets-grid {
    gap: 12px;
  }

  .about-panel {
    padding: 30px 18px;
  }

  .about-panel__points {
    gap: 10px;
  }

  .about-panel__points span {
    padding: 12px 14px;
  }

  .footer-panel {
    padding: 32px 18px;
    gap: 22px;
  }

  .footer-panel h2 {
    font-size: clamp(2rem, 12vw, 2.9rem);
    line-height: 1.05;
  }

  .contact-photo-card {
    justify-self: center;
    width: min(100%, 260px);
  }

  .contact-links a {
    font-size: 0.95rem;
  }
}

/* Client-review landing refresh: direct intro, no lipstick brush motifs. */
.sticker--brush,
.intro-deco--brush {
  display: none !important;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "nav"
    "title"
    "photo"
    "copy"
    "tools";
  justify-items: center;
  gap: clamp(14px, 2vw, 24px);
  min-height: min(920px, calc(100vh - 10px));
  padding: clamp(18px, 3vw, 44px) clamp(18px, 5vw, 72px) clamp(34px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(255, 252, 253, 0.96), rgba(255, 239, 245, 0.92)),
    url("./assets/paper-texture.svg");
  color: #171315;
}

.intro-panel::before {
  inset: auto auto -9% 50%;
  width: min(58vw, 640px);
  height: min(28vw, 300px);
  border-radius: 52% 52% 0 0;
  background: #f4b8c6;
  box-shadow: none;
  transform: translateX(-50%);
  animation: heroContentRise 1s ease both;
}

.intro-panel::after {
  inset: 16% auto auto 22%;
  width: 70px;
  height: 46px;
  border-radius: 0;
  opacity: 0.7;
  background: transparent;
  border-left: 4px solid #e694ad;
  border-top: 4px solid #e694ad;
  box-shadow: none;
  transform: rotate(-34deg);
  animation: cleanTileFloat 7s ease-in-out infinite alternate;
}

.intro-floating-photo {
  display: none;
}

.intro-deco--flower {
  left: auto;
  right: clamp(32px, 10vw, 160px);
  top: clamp(98px, 12vw, 150px);
  bottom: auto;
  width: 62px;
  height: 62px;
  opacity: 0.75;
}

.intro-deco--flower-small {
  left: clamp(24px, 7vw, 110px);
  right: auto;
  top: clamp(124px, 16vw, 190px);
  bottom: auto;
  width: 42px;
  height: 42px;
}

.intro-deco--sparkles {
  left: clamp(18px, 8vw, 130px);
  right: auto;
  bottom: 24%;
  width: 96px;
  height: 76px;
  opacity: 0.28;
}

.intro-nav {
  width: min(100%, 1080px);
  padding: 10px 12px;
  border-radius: 999px;
  background: #151414;
  border: 0;
  box-shadow: 0 18px 44px rgba(36, 24, 28, 0.18);
}

.intro-brand {
  position: absolute;
  left: 50%;
  gap: 9px;
  color: #fff8fb;
  transform: translateX(-50%);
}

.intro-brand.is-popped {
  transform: translateX(-50%) scale(1.08);
}

.intro-brand img {
  width: 38px;
  height: 38px;
  border-radius: 999px;
}

.intro-brand span {
  color: #fff8fb;
  font-size: 0.95rem;
  text-decoration: none;
}

.intro-nav-links {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 12px;
}

.intro-nav a {
  color: rgba(255, 248, 251, 0.88);
  text-decoration: none;
}

.intro-nav-links a {
  justify-self: start;
  padding: 12px 24px;
  border-radius: 999px;
}

.intro-nav-links a:nth-child(2) {
  justify-self: end;
  margin-right: min(14vw, 160px);
}

.intro-nav-links a:last-child {
  justify-self: end;
  padding: 13px 22px;
  color: #171315;
  background: #f4b8c6;
  box-shadow: none;
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bio-intro {
  margin-top: clamp(6px, 2vw, 22px);
  text-align: center;
}

.intro-kicker {
  margin-bottom: 12px;
  padding: 8px 20px;
  color: #171315;
  background: transparent;
  border: 1px solid rgba(36, 24, 28, 0.65);
  box-shadow: none;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.intro-panel .bio-mega-title {
  max-width: 900px;
  font-size: clamp(4.4rem, 8vw, 7.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-hello,
.intro-name {
  display: inline;
  letter-spacing: 0;
}

.intro-name {
  color: #e77799;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: cleanWordPulse 4s ease-in-out infinite alternate;
}

.intro-name::after {
  display: none;
}

.intro-panel .bio-photo-plain {
  grid-area: photo;
  display: block;
  width: min(100%, 330px);
  margin-top: -8px;
  z-index: 2;
  filter: drop-shadow(0 22px 38px rgba(36, 24, 28, 0.18));
}

.intro-panel .bio-photo-plain img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 28px;
  border: 8px solid #fff8fb;
  box-shadow: 0 18px 40px rgba(36, 24, 28, 0.18);
}

.intro-photo-pin,
.intro-photo-caption {
  display: none;
}

.intro-panel .bio-open-layout {
  display: contents;
}

.intro-panel .bio-copy--plain {
  grid-area: copy;
  max-width: 820px;
}

.intro-panel .bio-window-label {
  display: none;
}

.intro-panel .bio-copy--plain > p:not(.bio-lead) {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(36, 24, 28, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.intro-panel .bio-lead {
  max-width: 760px;
  margin-bottom: 10px;
  color: #2d171f;
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
  line-height: 1.6;
}

.intro-panel .bio-highlights {
  display: none;
}

.intro-panel .bio-side-info {
  grid-area: tools;
  width: min(100%, 760px);
}

.intro-facts {
  margin-top: 0;
  gap: 12px 18px;
}

.intro-facts span {
  color: #2d171f;
  font-weight: 800;
  white-space: normal;
}

.intro-facts span::after {
  background: #e77799;
}

.about-panel {
  display: none;
}

.typing-line-art {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  top: clamp(22px, 4vw, 52px);
  width: min(34vw, 280px);
  opacity: 0.78;
  pointer-events: none;
}

.typing-line-art svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.typing-line-art path {
  fill: none;
  stroke: #614952;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: drawTypingLine 4.2s ease forwards infinite alternate;
}

.typing-line-art path:nth-child(2n) {
  animation-delay: 0.25s;
}

.services-panel .sticker--laptop {
  display: none;
}

@keyframes drawTypingLine {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 760px) {
  .intro-panel {
    grid-template-areas:
      "nav"
      "title"
      "photo"
      "copy"
      "tools";
    padding: 12px 14px 28px;
  }

  .intro-nav {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 68px;
    border-radius: 28px;
    padding: 10px 12px;
  }

  .intro-brand {
    position: static;
    width: auto;
    justify-content: flex-start;
    transform: none;
  }

  .intro-brand.is-popped {
    transform: scale(1.08);
  }

  .intro-brand img {
    width: 38px;
    height: 38px;
  }

  .intro-brand span {
    font-size: 0.92rem;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    place-items: center;
    border-radius: 999px;
    background: #f4b8c6;
  }

  .mobile-menu-toggle span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #171315;
  }

  .intro-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 8px;
    z-index: 8;
    display: grid;
    width: min(210px, calc(100vw - 44px));
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    border-radius: 20px;
    background: #151414;
    box-shadow: 0 20px 42px rgba(36, 24, 28, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .intro-nav.is-open .intro-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .intro-nav-links a,
  .intro-nav-links a:nth-child(2),
  .intro-nav-links a:last-child {
    width: 100%;
    min-width: 0;
    margin: 0;
    justify-self: stretch;
    padding: 11px 14px;
    color: #fff8fb;
    background: transparent;
    text-align: left;
  }

  .intro-nav-links a:last-child {
    color: #171315;
    background: #f4b8c6;
  }

  .bio-intro {
    justify-self: center;
    text-align: center;
  }

  .intro-panel .bio-mega-title {
    font-size: clamp(3rem, 15vw, 4.2rem);
    line-height: 1.02;
  }

  .intro-hello,
  .intro-name {
    display: block;
  }

  .intro-panel .bio-photo-plain {
    width: min(78vw, 280px);
    margin-top: 0;
  }

  .intro-panel .bio-copy--plain {
    text-align: center;
  }

  .intro-panel .bio-copy--plain > p:not(.bio-lead) {
    font-size: 0.95rem;
  }

  .intro-facts {
    justify-content: center;
  }

  .intro-facts span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .intro-facts span::after {
    display: none;
  }

  .typing-line-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(78vw, 260px);
    margin: 0 0 10px auto;
  }
}

/* v58: compact project rhythm so the visual rows sit closer together. */
.projects-panel {
  padding-top: clamp(34px, 5vw, 70px) !important;
  padding-bottom: clamp(34px, 5vw, 68px) !important;
}

.projects-panel .projects-mega-title {
  margin-bottom: clamp(18px, 3vw, 34px) !important;
}

.project-showcase-row {
  display: grid !important;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr) !important;
  grid-template-areas:
    "label assets"
    "copy assets" !important;
  align-items: center !important;
  gap: clamp(12px, 1.8vw, 22px) clamp(22px, 3vw, 44px) !important;
  min-height: 0 !important;
  padding: clamp(18px, 2.6vw, 34px) 0 !important;
  margin: 0 !important;
}

.project-showcase-row + .project-showcase-row {
  margin-top: clamp(8px, 1.6vw, 18px) !important;
}

.project-row-label {
  grid-area: label !important;
  position: static !important;
  align-self: end !important;
  margin: 0 !important;
}

.project-detail-copy {
  grid-area: copy !important;
  align-self: start !important;
  margin: 0 !important;
  padding: clamp(12px, 1.6vw, 18px) !important;
}

.case-assets-grid,
.poster-assets-grid,
.social-assets-grid {
  grid-area: assets !important;
  align-self: center !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1.2vw, 15px) !important;
  margin: 0 !important;
}

.case-assets-grid figure,
.poster-assets-grid figure,
.social-assets-grid figure,
.case-assets-grid figure:nth-child(n),
.poster-assets-grid figure:nth-child(n),
.social-assets-grid figure:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: clamp(8px, 1vw, 12px) !important;
  aspect-ratio: auto !important;
}

.case-assets-grid img,
.poster-assets-grid img,
.social-assets-grid img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

.more-projects-panel {
  margin-top: clamp(26px, 4vw, 52px) !important;
}

@media (max-width: 980px) {
  .project-showcase-row {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "label"
      "copy"
      "assets" !important;
    gap: 14px !important;
    padding: 24px 0 !important;
  }

  .project-row-label,
  .project-detail-copy {
    max-width: 760px !important;
  }

  .case-assets-grid,
  .poster-assets-grid,
  .social-assets-grid {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .projects-panel {
    padding-top: 28px !important;
  }

  .project-showcase-row {
    padding: 18px 0 !important;
  }

  .case-assets-grid,
  .poster-assets-grid,
  .social-assets-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v59: client-requested featured projects + full archive page. */
.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
}

.featured-project-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: clamp(14px, 1.5vw, 20px);
  border: 1px solid rgba(218, 118, 160, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 244, 0.74)),
    repeating-linear-gradient(0deg, rgba(150, 55, 101, 0.05) 0 1px, transparent 1px 12px);
  box-shadow: 16px 18px 0 rgba(255, 174, 207, 0.46), 0 22px 60px rgba(72, 30, 48, 0.11);
  transform: rotate(-0.6deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-project-card:nth-child(2) {
  transform: rotate(0.75deg);
}

.featured-project-card:nth-child(3) {
  transform: rotate(-0.25deg);
}

.featured-project-card:hover {
  box-shadow: 10px 12px 0 rgba(255, 174, 207, 0.58), 0 28px 70px rgba(72, 30, 48, 0.15);
  transform: translateY(-8px) rotate(0deg);
}

.featured-project-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff9fb;
  background: #963765;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(150, 55, 101, 0.22);
}

.featured-project-image {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 12px solid #fff;
  background: #fff;
}

.featured-project-image::after,
.archive-grid figure::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -80%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: skewX(-18deg);
  animation: imageShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.featured-project-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.featured-project-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 8px;
}

.featured-project-mosaic img {
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.featured-project-mosaic--posters {
  grid-template-columns: 0.85fr 1.15fr;
}

.featured-project-mosaic--posters img:nth-child(2) {
  grid-row: span 2;
}

@keyframes imageShine {
  0%,
  52% {
    left: -80%;
  }
  78%,
  100% {
    left: 130%;
  }
}

.featured-project-copy {
  padding: 4px 2px 2px;
}

.featured-project-copy p,
.archive-heading p,
.archive-hero__copy p {
  margin: 0 0 8px;
  color: #963765;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-project-copy h3 {
  margin: 0 0 8px;
  color: #27151d;
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.featured-project-copy span {
  display: block;
  color: rgba(45, 29, 38, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.more-projects-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.more-projects-link:hover h3 {
  letter-spacing: -0.04em;
  transform: translateX(6px);
}

.more-projects-link h3 {
  transition: transform 0.25s ease, letter-spacing 0.25s ease;
}

.more-projects-page {
  gap: clamp(10px, 2vw, 18px);
}

.archive-hero,
.archive-section {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 70px);
}

.archive-category {
  padding: clamp(24px, 4vw, 54px) clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 174, 207, 0.34), transparent 24%),
    repeating-linear-gradient(0deg, rgba(150, 55, 101, 0.05) 0 1px, transparent 1px 12px),
    #fffafb;
}

.archive-category-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.archive-category-title p {
  margin: 0;
  color: #963765;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.archive-category-title h2 {
  margin: 0;
  color: #2d171f;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.archive-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  min-height: min(54vh, 560px);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 175, 207, 0.36), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(150, 55, 101, 0.12), transparent 22%),
    repeating-linear-gradient(0deg, rgba(150, 55, 101, 0.055) 0 1px, transparent 1px 12px),
    #fffafb;
}

.archive-hero::after,
.archive-section::after {
  content: "";
  position: absolute;
  inset: auto 5% 8% auto;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(218, 118, 160, 0.28);
  border-radius: 50%;
  pointer-events: none;
  animation: slowSpin 16s linear infinite;
}

.archive-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #2d171f;
  font-weight: 900;
  text-decoration: none;
}

.archive-brand img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 12px 24px rgba(41, 15, 27, 0.18);
}

.archive-hero__copy h1 {
  max-width: 820px;
  margin: 0;
  color: #27151d;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.archive-hero__copy span {
  display: block;
  max-width: 620px;
  margin-top: 22px;
  color: rgba(45, 29, 38, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

.archive-back-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff9fb;
  background: #2d171f;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(45, 23, 31, 0.16);
}

.archive-heading {
  display: flex;
  align-items: end;
  gap: clamp(16px, 3vw, 34px);
  margin-bottom: clamp(20px, 3vw, 38px);
}

.archive-heading > span {
  color: #963765;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.archive-heading h2 {
  margin: 0;
  color: #27151d;
  font-size: clamp(2.3rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.archive-grid--bubbl {
  grid-template-columns: 1fr;
}

.archive-grid--butter {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.archive-grid--butter figure:first-child,
.archive-grid--butter figure:nth-child(3) {
  grid-column: span 2;
}

.archive-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  background: #fff;
  box-shadow: 14px 16px 0 rgba(255, 174, 207, 0.44), 0 18px 52px rgba(72, 30, 48, 0.1);
}

.archive-phone-preview {
  width: min(520px, 100%);
  justify-self: center;
  padding: 34px 14px 18px !important;
  border-radius: 42px;
  border: 12px solid #27151d;
  background: #111 !important;
  box-shadow: 14px 16px 0 rgba(255, 174, 207, 0.44), 0 24px 64px rgba(39, 21, 29, 0.22) !important;
  animation: phoneFloat 5.2s ease-in-out infinite;
}

.archive-phone-preview img {
  border-radius: 24px;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 78px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transform: translateX(-50%);
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.35deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.35deg);
  }
}

.archive-grid figure:nth-child(2n) {
  transform: rotate(0.45deg);
}

.archive-grid figure:nth-child(2n + 1) {
  transform: rotate(-0.35deg);
}

.archive-grid img {
  display: block;
  width: 100%;
  height: auto;
}

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

  .featured-project-card,
  .featured-project-card:nth-child(2),
  .featured-project-card:nth-child(3) {
    transform: none;
  }

  .archive-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .archive-back-link {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .featured-project-card {
    padding: 12px;
    box-shadow: 8px 10px 0 rgba(255, 174, 207, 0.46), 0 18px 42px rgba(72, 30, 48, 0.1);
  }

  .featured-project-number {
    width: 42px;
    height: 42px;
    font-size: 0.78rem;
  }

  .archive-hero,
  .archive-section {
    padding: 24px 16px;
  }

  .archive-brand img {
    width: 48px;
    height: 48px;
  }

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

  .archive-grid--butter figure:first-child,
  .archive-grid--butter figure:nth-child(3) {
    grid-column: auto;
  }

  .archive-category-title {
    display: block;
  }

  .featured-project-mosaic,
  .featured-project-mosaic--posters {
    grid-template-columns: 1fr;
  }

  .featured-project-mosaic--posters img:nth-child(2) {
    grid-row: auto;
  }
}

/* v60: cleaner CTA and faster archive browsing by category. */
.more-projects-panel.more-projects-link {
  position: relative;
  display: inline-flex;
  width: auto;
  min-width: min(100%, 560px);
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  margin: clamp(34px, 5vw, 66px) auto 0 !important;
  padding: clamp(16px, 2.2vw, 24px) clamp(18px, 4vw, 46px) !important;
  border: 1px solid rgba(150, 55, 101, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 224, 238, 0.9)),
    repeating-linear-gradient(0deg, rgba(150, 55, 101, 0.04) 0 1px, transparent 1px 12px);
  box-shadow: 0 20px 50px rgba(150, 55, 101, 0.14), 8px 10px 0 rgba(255, 174, 207, 0.34);
  overflow: hidden;
}

.more-projects-panel.more-projects-link::before {
  content: "";
  position: absolute;
  inset: -80% auto -80% -35%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-18deg);
  animation: imageShine 4.2s ease-in-out infinite;
}

.more-projects-panel.more-projects-link::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(150, 55, 101, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.more-projects-eyebrow {
  position: relative;
  z-index: 1;
  color: #963765;
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.more-projects-link strong {
  position: relative;
  z-index: 1;
  color: #2d171f;
  font-size: clamp(1.6rem, 3.8vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.more-projects-arrow {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: clamp(46px, 6vw, 72px);
  height: clamp(46px, 6vw, 72px);
  place-items: center;
  border-radius: 50%;
  color: #fff9fb;
  background: #963765;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
  box-shadow: 0 12px 28px rgba(150, 55, 101, 0.22);
  animation: arrowNudge 1.6s ease-in-out infinite;
}

.more-projects-link:hover .more-projects-arrow {
  animation-duration: 0.75s;
}

@keyframes arrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(7px);
  }
}

.archive-hero {
  min-height: auto;
}

.archive-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 34px);
}

.archive-jump-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(150, 55, 101, 0.18);
  border-radius: 999px;
  color: #2d171f;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(150, 55, 101, 0.1);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.archive-jump-nav a:hover {
  color: #fff9fb;
  background: #963765;
  transform: translateY(-3px);
}

.archive-category {
  padding-block: clamp(18px, 3vw, 38px);
}

.archive-category:nth-of-type(2) {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 174, 207, 0.38), transparent 22%),
    linear-gradient(90deg, #fffafb, #ffeaf2);
}

.archive-category:nth-of-type(6) {
  background:
    radial-gradient(circle at 14% 70%, rgba(150, 55, 101, 0.12), transparent 22%),
    linear-gradient(90deg, #fffdf8, #fff1c8);
}

.archive-category:nth-of-type(8) {
  background:
    radial-gradient(circle at 90% 22%, rgba(218, 118, 160, 0.18), transparent 22%),
    linear-gradient(90deg, #f8fbff, #ffeaf5);
}

.archive-category-title p {
  color: #fff9fb;
  background: #963765;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(150, 55, 101, 0.16);
}

.archive-section {
  padding: clamp(24px, 3.8vw, 52px) !important;
}

.archive-heading {
  margin-bottom: clamp(14px, 2vw, 26px);
}

.archive-heading h2 {
  font-size: clamp(2rem, 4.2vw, 4.4rem);
}

.archive-heading > span {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.archive-grid,
.archive-grid--bubbl,
.archive-grid--butter {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  align-items: stretch;
}

.archive-grid--bubbl figure:first-child,
.archive-grid--butter figure:first-child {
  grid-column: span 2;
}

.archive-grid--butter figure:nth-child(3) {
  grid-column: auto;
}

.archive-grid figure {
  display: grid;
  align-items: center;
  padding: clamp(8px, 1vw, 12px);
}

.archive-grid img {
  align-self: center;
}

.archive-phone-preview {
  width: 100%;
  padding: 28px 12px 16px !important;
}

@media (max-width: 980px) {
  .archive-grid,
  .archive-grid--bubbl,
  .archive-grid--butter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-grid--bubbl figure:first-child,
  .archive-grid--butter figure:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .more-projects-panel.more-projects-link {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 26px;
  }

  .more-projects-arrow {
    align-self: flex-end;
  }

  .archive-grid,
  .archive-grid--bubbl,
  .archive-grid--butter,
  .archive-grid--bubbl figure:first-child,
  .archive-grid--butter figure:first-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .archive-jump-nav a {
    flex: 1 1 100%;
  }
}

/* v61: project shine is now an intentional click/tap detail, not a constant flash. */
.featured-project-image::after,
.archive-grid figure::after,
.more-projects-panel.more-projects-link::before {
  animation: none !important;
  opacity: 0 !important;
}

.archive-grid figure {
  cursor: pointer;
}

.archive-grid figure.is-shining::after {
  animation: imageShineOnce 0.95s ease-out 1 !important;
  opacity: 1 !important;
}

@keyframes imageShineOnce {
  0% {
    left: -80%;
    opacity: 0;
  }
  16% {
    opacity: 0.95;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

.archive-grid figure:focus-visible {
  outline: 3px solid rgba(150, 55, 101, 0.5);
  outline-offset: 6px;
}

.more-projects-panel.more-projects-link span,
.more-projects-eyebrow,
.more-projects-arrow {
  margin-top: 0 !important;
}

.archive-grid--amara figure:first-child {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .archive-grid--amara figure:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .archive-grid--amara figure:first-child {
    grid-column: auto;
  }
}

/* v62: tighter project browsing, cleaner CTA, and click-to-preview holders. */
.featured-project-image--single {
  min-height: clamp(260px, 34vw, 520px);
}

.featured-project-image--single img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.projects-panel .more-projects-panel.more-projects-link {
  display: grid !important;
  grid-template-columns: minmax(180px, auto) minmax(220px, auto) auto;
  width: min(900px, calc(100% - 48px));
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  margin: clamp(36px, 5vw, 72px) auto 0 !important;
  padding: clamp(18px, 2vw, 26px) clamp(26px, 5vw, 70px) !important;
  border: 1px solid rgba(150, 55, 101, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, rgba(218, 78, 145, 0.16), transparent 18%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 230, 240, 0.94));
  box-shadow:
    14px 16px 0 rgba(255, 174, 207, 0.32),
    0 22px 56px rgba(150, 55, 101, 0.14);
  transform: rotate(-0.25deg);
}

.projects-panel .more-projects-panel.more-projects-link::before {
  display: none !important;
}

.projects-panel .more-projects-panel.more-projects-link::after {
  inset: 10px;
  border: 1px solid rgba(150, 55, 101, 0.16);
  border-radius: inherit;
}

.projects-panel .more-projects-panel.more-projects-link:hover {
  transform: translateY(-5px) rotate(0deg);
  box-shadow:
    18px 20px 0 rgba(255, 174, 207, 0.38),
    0 30px 64px rgba(150, 55, 101, 0.18);
}

.projects-panel .more-projects-eyebrow {
  justify-self: start;
  color: #2d171f;
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.projects-panel .more-projects-link strong {
  justify-self: center;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  letter-spacing: -0.08em;
}

.projects-panel .more-projects-arrow {
  justify-self: start;
  position: relative;
  width: clamp(58px, 6vw, 82px);
  height: clamp(58px, 6vw, 82px);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.28), transparent 26%),
    #a43770;
  box-shadow:
    0 14px 28px rgba(150, 55, 101, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: transparent;
  font-size: 0;
  overflow: visible;
}

.projects-panel .more-projects-arrow::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(164, 55, 112, 0.26);
  border-radius: inherit;
}

.projects-panel .more-projects-arrow::after {
  content: "→";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff9fb;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  transform: translateX(1px);
}

.archive-grid,
.archive-grid--bubbl,
.archive-grid--butter,
.archive-grid--amara {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.archive-grid--bubbl figure:first-child,
.archive-grid--butter figure:first-child,
.archive-grid--butter figure:nth-child(3),
.archive-grid--amara figure:first-child {
  grid-column: auto !important;
}

.archive-grid figure {
  position: relative;
}

.archive-grid figure,
.featured-project-card {
  cursor: pointer;
}

.project-preview {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 0;
  background: rgba(45, 23, 31, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.project-preview.is-open {
  opacity: 1;
  visibility: visible;
}

.project-preview__card {
  position: relative;
  width: min(680px, 92vw);
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 174, 207, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 229, 240, 0.94));
  box-shadow:
    0 0 0 10px rgba(255, 174, 207, 0.16),
    0 0 70px rgba(218, 78, 145, 0.52),
    16px 18px 0 rgba(255, 174, 207, 0.44);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.project-preview.is-open .project-preview__card {
  transform: translateY(0) scale(1);
}

.project-preview__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.85), transparent 48%);
  transform: translateX(-130%) skewX(-18deg);
  animation: previewGlowSweep 1s ease 0.08s 1;
  pointer-events: none;
}

.project-preview__media {
  overflow: hidden;
  background: #fff;
}

.project-preview__media img {
  display: block;
  width: 100%;
  max-height: min(66vh, 620px);
  object-fit: contain;
}

.project-preview__title {
  margin: 14px 46px 0 0;
  color: #2d171f;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.project-preview__close {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff9fb;
  background: #963765;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(150, 55, 101, 0.25);
}

@keyframes previewGlowSweep {
  to {
    transform: translateX(130%) skewX(-18deg);
  }
}

@media (max-width: 760px) {
  .projects-panel .more-projects-panel.more-projects-link {
    grid-template-columns: 1fr auto;
    width: min(92vw, 560px);
    justify-content: stretch;
    border-radius: 34px;
    text-align: left;
  }

  .projects-panel .more-projects-eyebrow {
    grid-column: 1 / -1;
    justify-self: start;
    white-space: normal;
  }

  .projects-panel .more-projects-link strong {
    justify-self: start;
  }

  .projects-panel .more-projects-arrow {
    justify-self: end;
  }
}

@media (max-width: 520px) {
  .projects-panel .more-projects-panel.more-projects-link {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .projects-panel .more-projects-eyebrow,
  .projects-panel .more-projects-link strong,
  .projects-panel .more-projects-arrow {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .archive-grid,
  .archive-grid--bubbl,
  .archive-grid--butter,
  .archive-grid--amara {
    grid-template-columns: 1fr !important;
  }

  .project-preview {
    padding: 14px;
  }
}

/* v64: targeted polish fixes and archive enhancements */
.intro-panel .intro-orb--two,
.fresh-cover__stamp,
.archive-hero::after {
  display: none !important;
}

.fresh-cover__actions a {
  min-height: 56px !important;
  min-width: 158px !important;
  padding: 14px 28px !important;
}

.fresh-cover__facts {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
  max-width: 520px;
}

.fresh-cover__facts span {
  display: flex;
  min-height: 46px;
  align-items: center;
  width: 100%;
  padding: 10px 14px 10px 34px !important;
}

.fresh-cover__facts span::before {
  left: 16px !important;
}

#website-skill .skill-copy h3 {
  color: #21171c !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.featured-project-card:nth-child(3) .featured-project-image--single {
  display: grid;
  min-height: clamp(260px, 34vw, 460px);
  place-items: center;
}

.featured-project-card:nth-child(3) .featured-project-image--single img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.footer-panel .contact-links,
.footer-panel .contact-links a {
  min-width: 0;
  max-width: 100%;
}

.footer-panel .contact-links a > span:last-child {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.brand-bubbl {
  --brand-primary: #7B4F3A;
  --brand-tag: "Brand Identity";
}

.brand-butter {
  --brand-primary: #6B1F1F;
  --brand-tag: "Brand Identity";
}

.brand-kavita {
  --brand-primary: #1B4D3E;
  --brand-tag: "Brand Identity";
}

.brand-amara {
  --brand-primary: #8B4513;
  --brand-tag: "Brand Identity";
}

.brand-swatches {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.brand-swatches span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(45, 23, 31, 0.12);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 8px 16px rgba(45, 23, 31, 0.08);
}

.archive-section--branding .archive-grid figure {
  overflow: hidden;
}

.archive-section--branding .archive-grid figure::before {
  content: var(--brand-tag);
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(28, 28, 28, 0.34);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.archive-section--branding .archive-grid figure:hover::before,
.archive-section--branding .archive-grid figure:focus-visible::before {
  opacity: 1;
}

.archive-section--branding .archive-grid figure img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.archive-section--branding .archive-grid figure:hover img,
.archive-section--branding .archive-grid figure:focus-visible img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.brand-callout {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--brand-primary);
  background: color-mix(in srgb, var(--brand-primary) 10%, #fff 90%);
}

#posters,
#posters + .archive-section--posters {
  color: #fff8ee;
  background:
    radial-gradient(circle at 12% 12%, rgba(218, 79, 141, 0.2), transparent 28%),
    #1C1C1C !important;
}

#posters .archive-category-title p,
#posters .archive-category-title h2,
#posters + .archive-section--posters .archive-heading p,
#posters + .archive-section--posters .archive-heading h2 {
  color: #fff8ee !important;
}

#posters + .archive-section--posters .archive-heading > span {
  color: #fff8ee;
  border-color: rgba(255, 248, 238, 0.34);
}

.archive-grid--posters figure {
  transform-origin: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-grid--posters figure:nth-child(odd) {
  transform: rotate(2deg);
}

.archive-grid--posters figure:nth-child(even) {
  transform: rotate(-2deg);
}

.archive-grid--posters figure:hover,
.archive-grid--posters figure:focus-visible {
  transform: rotate(0deg) scale(1.02);
}

.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 0;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.poster-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.poster-lightbox img {
  display: block;
  max-width: min(94vw, 1180px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(255, 174, 207, 0.22);
}

.poster-lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 248, 238, 0.34);
  border-radius: 50%;
  color: #fff8ee;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
}

.feed-device-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.52fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.feed-device-showcase::before,
.feed-device-showcase::after {
  display: none !important;
}

.device-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.device-frame figcaption {
  margin-top: 12px;
  color: #963765;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.device-frame--desktop {
  align-self: center;
  width: 100%;
  padding: 12px;
  border: 8px solid #1a1a1a;
  border-radius: 22px;
  background: #1a1a1a;
  box-shadow: 18px 22px 0 rgba(255, 174, 207, 0.38);
}

.device-frame__chrome {
  display: grid;
  grid-template-columns: repeat(3, 10px) 1fr;
  gap: 8px;
  align-items: center;
  padding: 0 0 12px;
}

.device-frame__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff8bb8;
}

.device-frame__chrome span:nth-child(2) {
  background: #ffd9a1;
}

.device-frame__chrome span:nth-child(3) {
  background: #bfe7c8;
}

.device-frame__chrome i {
  min-width: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-frame__screen {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
}

.device-frame__screen img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.device-frame--phone {
  align-self: center;
  justify-self: center;
  width: min(100%, 275px);
}

.device-frame__phone-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 36px 10px 28px;
  border: 10px solid #1a1a1a;
  border-radius: 34px;
  background: #1a1a1a;
  box-shadow: 14px 18px 0 rgba(255, 174, 207, 0.38);
}

.device-frame__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 64px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.device-frame__home {
  position: absolute;
  bottom: 11px;
  left: 50%;
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  transform: translateX(-50%);
}

.device-frame--phone .device-frame__screen {
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.device-frame--phone .device-frame__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 760px) {
  .fresh-cover__actions a {
    min-width: 148px !important;
  }

  .feed-device-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .device-frame--desktop {
    width: min(100%, 560px);
  }

  .device-frame--phone {
    width: min(68vw, 285px);
  }
}

/* v66: richer archive browsing, stacked feed previews, and cleaner Butter Crumb layout. */
.archive-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand back"
    "copy copy";
  align-items: start;
  gap: clamp(20px, 4vw, 44px);
  padding-block: clamp(42px, 7vw, 86px) !important;
}

/* v67: client review copy polish and feed reference cue. */
.fresh-cover__label {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 16px);
  letter-spacing: -0.08em;
}

.fresh-cover__label::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(10px, 1.25vw, 15px);
  height: clamp(10px, 1.25vw, 15px);
  border-radius: 50%;
  background: #d94f8d;
  box-shadow:
    0 0 0 8px rgba(217, 79, 141, 0.12),
    0 10px 24px rgba(141, 47, 95, 0.18);
}

.device-frame {
  position: relative;
}

.device-scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: max-content;
  max-width: calc(100% - 24px);
  margin: 10px auto 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 174, 207, 0.42);
  border-radius: 999px;
  color: #ffd5e3;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: slideCueFloat 1.55s ease-in-out infinite;
}

.device-frame--desktop .device-scroll-cue {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  top: clamp(54px, 5vw, 72px);
  z-index: 4;
  margin: 0;
  color: #1a1a1a;
  background: rgba(255, 244, 248, 0.92);
  box-shadow:
    0 12px 28px rgba(26, 26, 26, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.device-frame--desktop .device-scroll-cue i {
  color: #fff;
  background: #963765;
}

.device-scroll-cue i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #1a1a1a;
  background: #ffd5e3;
  font-style: normal;
  animation: slideCueArrow 1.05s ease-in-out infinite;
}

.device-frame__phone-shell .device-scroll-cue {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 3;
  margin: 0;
  padding: 7px 10px;
  border-color: rgba(26, 26, 26, 0.16);
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(26, 26, 26, 0.16);
}

.device-frame__phone-shell .device-scroll-cue i {
  width: 18px;
  height: 18px;
  color: #fff;
  background: #963765;
}

@keyframes slideCueFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes slideCueArrow {
  0%,
  100% {
    transform: translateY(-1px);
  }
  50% {
    transform: translateY(3px);
  }
}

@media (max-width: 760px) {
  .fresh-cover__label {
    gap: 10px;
    letter-spacing: -0.06em;
  }

  .device-scroll-cue {
    font-size: 0.58rem;
    max-width: min(82vw, 300px);
    white-space: normal;
  }

  .device-frame--desktop .device-scroll-cue {
    right: 18px;
    top: 58px;
    font-size: 0.6rem;
  }

  .device-frame__phone-shell .device-scroll-cue {
    right: 12px;
    bottom: 17px;
  }
}

.archive-brand {
  grid-area: brand;
  width: max-content;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(150, 55, 101, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(150, 55, 101, 0.1);
}

.archive-back-link {
  grid-area: back;
  align-self: center;
}

.archive-hero__copy {
  grid-area: copy;
  width: min(880px, 100%);
  justify-self: center;
  text-align: center;
}

.archive-hero__copy h1,
.archive-hero__copy span {
  margin-inline: auto;
}

.archive-jump-nav {
  justify-content: center;
}

.archive-grid--butter {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: center;
}

.archive-grid--butter figure:first-child {
  grid-column: 1 / -1 !important;
  width: min(980px, 100%);
  justify-self: center;
  transform: rotate(-0.25deg);
}

.archive-grid--butter figure:nth-child(2) {
  transform: rotate(0.35deg);
}

.archive-grid--butter figure:nth-child(3) {
  grid-column: auto !important;
  transform: rotate(-0.25deg);
}

.archive-grid--butter .archive-phone-preview {
  width: 100%;
  justify-self: stretch;
  padding: clamp(8px, 1vw, 12px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  animation: none !important;
  box-shadow: 14px 16px 0 rgba(255, 174, 207, 0.44), 0 18px 52px rgba(72, 30, 48, 0.1) !important;
}

.archive-grid--butter .archive-phone-preview img {
  border-radius: 0;
}

.archive-grid--butter .phone-speaker {
  display: none;
}

.device-frame--desktop .device-frame__screen {
  max-height: min(66vh, 680px);
  overflow-y: auto;
  scrollbar-color: rgba(150, 55, 101, 0.45) rgba(255, 232, 241, 0.7);
}

.device-frame--desktop .device-frame__screen::-webkit-scrollbar,
.device-frame--phone .device-frame__screen::-webkit-scrollbar {
  width: 8px;
}

.device-frame--desktop .device-frame__screen::-webkit-scrollbar-thumb,
.device-frame--phone .device-frame__screen::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(150, 55, 101, 0.42);
}

.feed-device-stack {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: #fff;
}

.feed-device-stack img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(45, 23, 31, 0.06);
  object-fit: contain;
}

.device-frame--phone .device-frame__screen {
  overflow-y: auto;
  scrollbar-width: thin;
}

.device-frame--phone .feed-device-stack {
  gap: 7px;
  padding: 7px;
}

.device-frame--phone .device-frame__screen img,
.device-frame--phone .feed-device-stack img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .archive-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "back";
    justify-items: center;
  }

  .archive-back-link {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .archive-hero {
    padding-block: 34px !important;
  }

  .archive-hero__copy {
    text-align: left;
  }

  .archive-hero__copy h1,
  .archive-hero__copy span {
    margin-inline: 0;
  }

  .archive-jump-nav {
    justify-content: stretch;
  }

  .archive-grid--butter {
    grid-template-columns: 1fr !important;
  }

  .archive-grid--butter figure:first-child {
    grid-column: auto !important;
  }

  .device-frame--desktop .device-frame__screen {
    max-height: 520px;
  }

  .device-frame--phone {
    width: min(78vw, 300px);
  }
}

/* v68: keep the archive intro crisp on phones after the final copy polish. */
@media (max-width: 760px) {
  .archive-hero {
    min-height: auto;
    padding: 30px 18px 44px !important;
    background:
      radial-gradient(circle at 14% 14%, rgba(255, 175, 207, 0.42), transparent 28%),
      linear-gradient(180deg, rgba(255, 232, 241, 0.88), rgba(255, 250, 251, 0.96)),
      repeating-linear-gradient(0deg, rgba(150, 55, 101, 0.08) 0 1px, transparent 1px 12px),
      #fffafb;
  }

  .archive-brand,
  .archive-back-link,
  .archive-hero__copy {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .archive-brand {
    justify-self: start;
    max-width: 100%;
    color: #2d171f;
    background: rgba(255, 255, 255, 0.96);
  }

  .archive-hero__copy {
    justify-self: stretch;
    width: 100%;
    color: #2d171f;
  }

  .archive-hero__copy p {
    color: #963765;
  }

  .archive-hero__copy h1 {
    max-width: 6.6em;
    color: #2d171f;
    font-size: clamp(4.7rem, 20vw, 6.5rem);
    line-height: 0.83;
  }

  .archive-hero__copy span {
    max-width: 28rem;
    color: rgba(45, 23, 31, 0.72);
  }

  .archive-back-link {
    justify-self: start;
    color: #fff9fb;
    background: #2d171f;
    box-shadow: 0 14px 34px rgba(45, 23, 31, 0.18);
  }
}

/* v70: clean fact bullets and separate feed-system device references. */
.fresh-cover__facts {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(12px, 1.5vw, 16px) !important;
  max-width: 720px !important;
}

.fresh-cover__facts span {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center !important;
  min-height: auto !important;
  padding: 0 !important;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem) !important;
  line-height: 1.25 !important;
}

.fresh-cover__facts span::before {
  position: static !important;
  display: block;
  width: 13px !important;
  height: 13px !important;
  border-radius: 50%;
  background: #d94f8d;
  box-shadow: 0 0 0 7px rgba(217, 79, 141, 0.1);
  transform: none !important;
}

.feed-reference-cue {
  display: flex;
  width: max-content;
  max-width: min(100%, 440px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  padding: 10px 18px;
  border: 1px solid rgba(217, 79, 141, 0.2);
  border-radius: 999px;
  color: #963765;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(150, 55, 101, 0.12), 10px 10px 0 rgba(255, 174, 207, 0.32);
  animation: slideCueFloat 1.55s ease-in-out infinite;
}

.feed-reference-cue i {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #963765;
  font-style: normal;
  animation: slideCueArrow 1.05s ease-in-out infinite;
}

.feed-device-showcase {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(42px, 7vw, 82px) !important;
}

.feed-device-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(190px, 0.45fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.feed-device-pair .device-frame {
  min-width: 0;
}

.feed-device-pair .device-frame--desktop {
  justify-self: stretch;
}

.feed-device-pair .device-frame--phone {
  width: min(100%, 260px);
}

.feed-device-pair .feed-device-stack {
  display: block;
  padding: 0;
}

.feed-device-pair .feed-device-stack img {
  border: 0;
}

.feed-device-pair .device-frame--desktop .device-frame__screen,
.feed-device-pair .device-frame--phone .device-frame__screen {
  overflow: hidden;
  max-height: none;
}

.feed-device-pair .device-frame--phone .device-frame__screen img,
.feed-device-pair .device-frame--phone .feed-device-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 900px) {
  .feed-device-pair {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .feed-device-pair .device-frame--desktop {
    width: min(100%, 640px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .fresh-cover__facts {
    max-width: 100% !important;
  }

  .fresh-cover__facts span {
    grid-template-columns: 14px minmax(0, 1fr);
    column-gap: 12px;
    font-size: 1rem !important;
  }

  .fresh-cover__facts span::before {
    width: 11px !important;
    height: 11px !important;
  }

  .feed-reference-cue {
    max-width: calc(100vw - 38px);
    padding: 10px 14px;
    font-size: 0.6rem;
    white-space: normal;
  }

  .feed-device-pair {
    gap: 26px;
  }

  .feed-device-pair .device-frame--phone {
    width: min(72vw, 250px);
  }
}

/* v71: final credit strip and numbered Instagram grid stories. */
.site-credit-line {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 16px 12px;
  background: #0e0e0e;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.site-credit-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.site-credit-line a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
}

.site-credit-line a:hover {
  color: #ffd6e6;
}

.site-credit-mark {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #fff;
  color: #0e0e0e;
  font-size: 0.68rem;
  line-height: 1;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.site-credit-line a:hover .site-credit-mark {
  transform: translate(2px, -2px);
  box-shadow: 0 0 16px rgba(255, 214, 230, 0.45);
}

.feed-device-story {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

.feed-device-story__heading {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 2vw, 22px);
  max-width: 1180px;
  margin: 0 auto;
}

.feed-device-story__heading > span {
  display: inline-grid;
  width: clamp(52px, 6vw, 72px);
  height: clamp(52px, 6vw, 72px);
  place-items: center;
  border-radius: 50%;
  background: #a2386e;
  color: #fff;
  box-shadow: 0 16px 28px rgba(162, 56, 110, 0.2);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feed-device-story__heading p {
  margin: 0 0 4px;
  color: #a2386e;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feed-device-story__heading h3 {
  margin: 0;
  color: #2d171f;
  font-size: clamp(1.9rem, 4.6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

@media (max-width: 760px) {
  .site-credit-line {
    padding: 9px 14px 11px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .feed-device-story__heading {
    align-items: center;
    width: min(100%, 640px);
  }

  .feed-device-story__heading > span {
    width: 46px;
    height: 46px;
    font-size: 0.95rem;
  }

  .feed-device-story__heading h3 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }
}

/* Divider and coming soon text */
.projects-divider {
  height: 2px;
  background-color: #000;
  margin: 60px auto;
  width: 80%;
  max-width: 900px;
}

.more-projects-text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 30px auto;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .projects-divider {
    margin: 40px auto;
    width: 90%;
  }

  .more-projects-text {
    font-size: 1rem;
  }
}

/* v72: client review sizing and archive stacking updates. */
.fresh-cover {
  min-height: auto;
  padding-block: clamp(24px, 3.4vw, 48px) clamp(34px, 4.8vw, 66px);
  gap: clamp(20px, 3vw, 48px);
}

.fresh-cover__masthead {
  width: min(100%, 980px);
  justify-self: start;
}

.fresh-cover__masthead p {
  margin: 0 0 -0.06em clamp(4px, 3vw, 46px) !important;
  font-size: clamp(1.65rem, 3.2vw, 3rem) !important;
  letter-spacing: -0.04em;
}

.fresh-cover__masthead h1 {
  width: max-content;
  max-width: 100%;
  font-size: clamp(4.8rem, 11.2vw, 9.6rem) !important;
  line-height: 0.78 !important;
  letter-spacing: -0.12em !important;
  white-space: normal;
  transform: none !important;
}

.fresh-cover__masthead span {
  width: auto !important;
  max-width: 720px;
  margin: clamp(12px, 1.6vw, 18px) 0 0 clamp(4px, 3vw, 46px) !important;
  font-size: clamp(0.76rem, 0.95vw, 0.92rem) !important;
  line-height: 1.35;
}

.fresh-cover__label {
  gap: 0 !important;
  font-size: clamp(3.2rem, 6.2vw, 5.8rem);
}

.fresh-cover__label::after {
  display: none !important;
}

.fresh-cover__about p:not(.fresh-cover__label) {
  font-size: clamp(0.88rem, 1.05vw, 1.05rem) !important;
  line-height: 1.52 !important;
}

.fresh-cover__about p:nth-of-type(2) {
  font-size: clamp(1rem, 1.45vw, 1.3rem) !important;
  line-height: 1.32 !important;
}

.services-panel {
  padding-block: clamp(36px, 4.6vw, 58px) !important;
}

.section-title--skills {
  font-size: clamp(3.4rem, 7vw, 6.2rem) !important;
  margin-bottom: clamp(20px, 3vw, 34px) !important;
}

.section-title--skills::after {
  max-width: 680px;
  margin-top: 10px;
  font-size: clamp(1rem, 1.7vw, 1.7rem);
  line-height: 1.06;
}

.skills-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 56px) !important;
  row-gap: 0 !important;
  max-width: 1040px;
  border-top: 0 !important;
}

.skill-row {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: clamp(12px, 1.6vw, 20px) !important;
  padding: clamp(12px, 1.6vw, 18px) 0 !important;
  border-top: 1px solid rgba(141, 47, 95, 0.18) !important;
}

.skill-index {
  font-size: clamp(2rem, 3.2vw, 3.2rem) !important;
}

.skill-copy h3 {
  margin-bottom: 6px;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem) !important;
}

.skill-copy p {
  margin-bottom: 7px;
  font-size: clamp(0.74rem, 0.82vw, 0.84rem) !important;
  line-height: 1.34 !important;
}

.skill-copy ul {
  gap: 5px 8px;
}

.skill-copy li {
  padding: 4px 8px !important;
  font-size: 0.72rem;
  line-height: 1.25;
}

.skills-side-note {
  margin-top: clamp(18px, 2.5vw, 30px);
}

.skills-side-note p {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem) !important;
  line-height: 1.55 !important;
}

.archive-section {
  padding: clamp(20px, 3vw, 38px) !important;
}

.archive-heading {
  margin-bottom: clamp(12px, 1.6vw, 20px);
}

.archive-heading h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.8rem);
}

.archive-heading > span {
  font-size: clamp(2.3rem, 4.3vw, 4.6rem);
}

.archive-grid,
.archive-grid--bubbl,
.archive-grid--butter,
.archive-grid--amara,
.archive-grid--posters {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(14px, 1.8vw, 22px);
}

.archive-grid--bubbl figure:first-child,
.archive-grid--butter figure:first-child,
.archive-grid--butter figure:nth-child(3),
.archive-grid--amara figure:first-child {
  grid-column: auto !important;
}

.archive-grid figure {
  width: min(100%, 620px);
  justify-self: center;
  padding: clamp(7px, 0.9vw, 10px);
  transform: none !important;
}

.archive-grid img {
  max-height: min(58vh, 430px);
  object-fit: contain;
}

.archive-grid--butter .archive-phone-preview {
  justify-self: center;
}

.feed-device-showcase {
  gap: clamp(30px, 4.5vw, 54px) !important;
}

@media (max-width: 920px) {
  .fresh-cover {
    padding-top: 20px;
  }

  .fresh-cover__masthead {
    padding-top: 58px !important;
  }

  .fresh-cover__masthead h1 {
    font-size: clamp(4.2rem, 18vw, 7.4rem) !important;
  }

  .skill-row {
    grid-template-columns: 86px minmax(0, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .fresh-cover__masthead p,
  .fresh-cover__masthead span {
    margin-left: 0 !important;
  }

  .fresh-cover__masthead h1 {
    font-size: clamp(3.4rem, 17vw, 5rem) !important;
    letter-spacing: -0.105em !important;
  }

  .fresh-cover__label {
    font-size: clamp(2.9rem, 16vw, 4.3rem);
  }

  .skill-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .skill-index {
    font-size: clamp(2.4rem, 13vw, 3.4rem) !important;
  }
}

@media (max-width: 760px) {
  .skills-list {
    grid-template-columns: 1fr;
  }
}

/* v73: move hero accents away from the title and fill the open cover space. */
.fresh-cover__masthead {
  position: relative;
}

.fresh-cover__masthead span {
  margin-top: clamp(20px, 2vw, 34px) !important;
  max-width: 560px;
  position: relative;
  z-index: 4;
}

.fresh-cover__masthead::after {
  content: "";
  position: absolute;
  left: clamp(620px, 56vw, 1040px);
  top: clamp(160px, 14vw, 238px);
  z-index: 1;
  width: clamp(160px, 14vw, 260px);
  height: clamp(78px, 7vw, 130px);
  border: 2px dashed rgba(217, 79, 141, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 188, 211, 0.72) 42% 52%, transparent 52% 100%),
    radial-gradient(circle, rgba(217, 79, 141, 0.28) 0 4px, transparent 5px);
  background-size: auto, 24px 24px;
  box-shadow:
    16px 16px 0 rgba(255, 213, 227, 0.42),
    0 18px 40px rgba(141, 47, 95, 0.06);
  opacity: 0.78;
  transform: rotate(-4deg);
  pointer-events: none;
}

.fresh-cover__scribble--one {
  left: clamp(500px, 48vw, 900px) !important;
  top: clamp(150px, 14vw, 230px) !important;
  width: clamp(190px, 22vw, 360px) !important;
  height: clamp(72px, 8vw, 128px) !important;
  border-width: 4px !important;
  opacity: 0.7 !important;
  transform: rotate(10deg) !important;
}

.fresh-cover__scribble--two {
  right: clamp(170px, 15vw, 280px) !important;
  top: clamp(170px, 14vw, 245px) !important;
  width: clamp(56px, 6vw, 92px) !important;
  height: clamp(34px, 4vw, 58px) !important;
  border-width: 4px !important;
  opacity: 0.78 !important;
  transform: rotate(-14deg) !important;
}

.fresh-cover__star--one {
  right: clamp(150px, 13vw, 250px) !important;
  top: clamp(245px, 21vw, 360px) !important;
  width: clamp(34px, 3.2vw, 54px);
  height: clamp(34px, 3.2vw, 54px);
}

@media (max-width: 920px) {
  .fresh-cover__masthead::after {
    display: none;
  }

  .fresh-cover__scribble--one {
    left: 52% !important;
    top: 118px !important;
    width: 190px !important;
    height: 76px !important;
  }

  .fresh-cover__scribble--two {
    right: 7% !important;
    top: 158px !important;
  }
}

@media (max-width: 560px) {
  .fresh-cover__masthead span {
    margin-top: 16px !important;
  }

  .fresh-cover__scribble--one,
  .fresh-cover__scribble--two {
    display: none !important;
  }
}

/* v74: restore the portfolio loop and enrich the landing composition. */
.fresh-cover__masthead p,
.fresh-cover__masthead h1,
.fresh-cover__masthead span {
  position: relative;
  z-index: 4;
}

.fresh-cover__masthead::after {
  left: clamp(760px, 58vw, 1150px);
  top: clamp(150px, 13vw, 220px);
  width: clamp(210px, 17vw, 330px);
  height: clamp(104px, 8.5vw, 156px);
  border: 0;
  border-radius: 34px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 188, 211, 0.72) 42% 52%, transparent 52% 100%),
    radial-gradient(circle, rgba(217, 79, 141, 0.28) 0 4px, transparent 5px),
    rgba(255, 244, 248, 0.36);
  background-size: auto, 25px 25px, auto;
  box-shadow:
    18px 18px 0 rgba(255, 213, 227, 0.42),
    inset 0 0 0 2px rgba(217, 79, 141, 0.08),
    0 18px 40px rgba(141, 47, 95, 0.06);
  opacity: 0.82;
  transform: rotate(-5deg);
}

.fresh-cover__scribble {
  z-index: 2 !important;
}

.fresh-cover__scribble--one {
  left: clamp(350px, 30vw, 590px) !important;
  top: clamp(116px, 10vw, 174px) !important;
  width: clamp(320px, 31vw, 570px) !important;
  height: clamp(100px, 9vw, 168px) !important;
  border-width: 4px !important;
  opacity: 0.76 !important;
  transform: rotate(8deg) !important;
}

.fresh-cover__scribble--two {
  right: clamp(160px, 14vw, 270px) !important;
  top: clamp(206px, 17vw, 296px) !important;
  width: clamp(62px, 5.4vw, 98px) !important;
  height: clamp(38px, 3.4vw, 62px) !important;
}

.fresh-cover__star--one {
  right: clamp(142px, 12vw, 238px) !important;
  top: clamp(300px, 25vw, 430px) !important;
}

.fresh-cover__about {
  position: relative;
}

.fresh-cover__about::before {
  content: "";
  position: absolute;
  right: clamp(-300px, -18vw, -150px);
  top: clamp(190px, 16vw, 275px);
  z-index: -1;
  width: clamp(170px, 15vw, 285px);
  height: clamp(170px, 15vw, 285px);
  border: 2px solid rgba(217, 79, 141, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(141, 47, 95, 0.24) 0 8px, transparent 9px),
    radial-gradient(circle at 28% 32%, rgba(255, 196, 216, 0.82) 0 18px, transparent 19px),
    radial-gradient(circle at 70% 28%, rgba(255, 196, 216, 0.82) 0 18px, transparent 19px),
    radial-gradient(circle at 74% 72%, rgba(255, 196, 216, 0.82) 0 18px, transparent 19px),
    radial-gradient(circle at 30% 74%, rgba(255, 196, 216, 0.82) 0 18px, transparent 19px);
  opacity: 0.46;
  transform: rotate(12deg);
}

.fresh-cover__about::after {
  content: "";
  position: absolute;
  right: clamp(-230px, -14vw, -112px);
  top: clamp(22px, 3vw, 58px);
  z-index: -1;
  width: clamp(86px, 8vw, 150px);
  height: clamp(86px, 8vw, 150px);
  background: #d94f8d;
  clip-path: polygon(50% 0, 60% 36%, 100% 50%, 60% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.62;
  transform: rotate(-8deg);
}

@media (max-width: 1200px) {
  .fresh-cover__about::before,
  .fresh-cover__about::after {
    display: none;
  }
}

@media (max-width: 920px) {
  .fresh-cover__scribble--one {
    left: 44% !important;
    top: 112px !important;
    width: 220px !important;
    height: 78px !important;
  }

  .fresh-cover__scribble--two {
    right: 8% !important;
    top: 178px !important;
  }
}

/* v75: client direction - portfolio loop overlaps the masthead again. */
.fresh-cover__masthead {
  width: min(100%, 1120px);
}

.fresh-cover__masthead p,
.fresh-cover__masthead h1,
.fresh-cover__masthead span {
  z-index: 5;
}

.fresh-cover__scribble--one {
  left: clamp(250px, 22vw, 440px) !important;
  top: clamp(82px, 7.6vw, 136px) !important;
  width: clamp(520px, 46vw, 880px) !important;
  height: clamp(126px, 12vw, 230px) !important;
  border-width: 4px !important;
  opacity: 0.78 !important;
  transform: rotate(6deg) !important;
}

.fresh-cover__scribble--two {
  right: clamp(138px, 12vw, 230px) !important;
  top: clamp(178px, 15vw, 255px) !important;
}

.fresh-cover__star--one {
  right: clamp(124px, 10vw, 215px) !important;
  top: clamp(270px, 23vw, 390px) !important;
}

.fresh-cover__about {
  max-width: 780px;
}

.fresh-cover__label {
  margin-bottom: clamp(18px, 2vw, 26px);
  font-size: clamp(3.9rem, 7.4vw, 7rem) !important;
}

.fresh-cover__about p:not(.fresh-cover__label) {
  max-width: 720px;
  font-size: clamp(0.98rem, 1.18vw, 1.18rem) !important;
  line-height: 1.58 !important;
}

.fresh-cover__about p:nth-of-type(2) {
  font-size: clamp(1.18rem, 1.8vw, 1.6rem) !important;
  line-height: 1.34 !important;
}

.fresh-cover__facts {
  max-width: 620px !important;
  margin-top: clamp(22px, 3vw, 38px);
}

.fresh-cover__facts span {
  font-size: clamp(1rem, 1.24vw, 1.18rem) !important;
}

@media (max-width: 920px) {
  .fresh-cover__scribble--one {
    left: 34% !important;
    top: 108px !important;
    width: 320px !important;
    height: 96px !important;
  }
}

@media (max-width: 560px) {
  .fresh-cover__label {
    font-size: clamp(3.2rem, 17vw, 4.8rem) !important;
  }
}

/* v76: compact reference-style portfolio loop, no designer tag. */
.fresh-cover__masthead {
  width: min(100%, 1040px);
  overflow: visible;
}

.fresh-cover__masthead p,
.fresh-cover__masthead h1,
.fresh-cover__masthead span {
  position: relative;
  z-index: 5;
}

.fresh-cover__portfolio-flourish {
  position: absolute;
  left: clamp(230px, 18vw, 340px);
  top: clamp(4px, 1.2vw, 26px);
  z-index: 4;
  width: clamp(430px, 42vw, 760px);
  height: auto;
  overflow: visible;
  color: #d94f8d;
  pointer-events: none;
}

.fresh-cover__portfolio-flourish path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.72;
}

.fresh-cover__portfolio-flourish polygon {
  fill: currentColor;
  opacity: 0.9;
}

.fresh-cover__scribble,
.fresh-cover__star--one {
  display: none !important;
}

@media (max-width: 920px) {
  .fresh-cover__portfolio-flourish {
    left: 26%;
    top: 42px;
    width: min(66vw, 460px);
  }
}

@media (max-width: 560px) {
  .fresh-cover__portfolio-flourish {
    left: 20%;
    top: 50px;
    width: 70vw;
  }
}

/* v77: remove client-rejected band-aid and star while keeping the hero balanced. */
.fresh-cover__masthead::after {
  display: none !important;
}

.fresh-cover__portfolio-flourish {
  left: clamp(245px, 19vw, 360px);
  top: clamp(8px, 1.4vw, 30px);
  width: clamp(390px, 39vw, 710px);
}

.fresh-cover__portfolio-flourish path {
  stroke-width: 4;
  opacity: 0.68;
}

@media (max-width: 920px) {
  .fresh-cover__portfolio-flourish {
    left: 28%;
    top: 44px;
    width: min(62vw, 430px);
  }
}

@media (max-width: 560px) {
  .fresh-cover__portfolio-flourish {
    left: 22%;
    top: 52px;
    width: 66vw;
  }
}

/* v78: larger integrated logo badge + full mobile responsiveness pass. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.fresh-cover__brand {
  right: clamp(18px, 4vw, 66px) !important;
  top: clamp(18px, 3vw, 38px) !important;
  gap: clamp(14px, 1.4vw, 18px) !important;
  padding: clamp(12px, 1.1vw, 16px) clamp(20px, 2vw, 30px) clamp(12px, 1.1vw, 16px) clamp(12px, 1.1vw, 16px) !important;
  border: 2px solid rgba(217, 79, 141, 0.22) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 250, 0.86)) !important;
  box-shadow:
    0 18px 45px rgba(141, 47, 95, 0.13),
    8px 9px 0 rgba(255, 213, 227, 0.92) !important;
}

.fresh-cover__brand img {
  width: clamp(76px, 5.3vw, 94px) !important;
  height: clamp(76px, 5.3vw, 94px) !important;
  border: 3px solid rgba(255, 244, 248, 0.92);
  box-shadow:
    0 12px 26px rgba(141, 47, 95, 0.18),
    0 0 0 5px rgba(217, 79, 141, 0.08) !important;
}

.fresh-cover__brand span {
  font-size: clamp(1.18rem, 1.45vw, 1.55rem) !important;
  line-height: 1.05;
}

.fresh-cover__brand span::after {
  font-size: clamp(0.7rem, 0.75vw, 0.82rem) !important;
  line-height: 1.15;
}

.fresh-cover__portfolio-flourish {
  left: clamp(250px, 20vw, 380px);
  top: clamp(10px, 1.6vw, 34px);
  width: clamp(360px, 35vw, 650px);
}

.fresh-cover__portfolio-flourish path {
  stroke-width: 3.6;
  opacity: 0.62;
}

@media (max-width: 768px) {
  html,
  body,
  .site-shell,
  .paper-panel,
  .dark-panel,
  .fresh-cover {
    overflow-x: hidden !important;
  }

  .site-shell {
    width: 100%;
    margin: 0;
  }

  .paper-panel,
  .dark-panel {
    border-radius: 0;
    margin-bottom: 0;
  }

  .fresh-cover {
    min-height: auto !important;
    padding: 48px 24px 58px !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "mast"
      "brand"
      "photo"
      "about" !important;
    gap: 24px !important;
  }

  .fresh-cover__masthead {
    grid-area: mast;
    width: 100% !important;
    padding-top: 0 !important;
  }

  .fresh-cover__masthead p {
    margin: 0 0 -2px 0 !important;
    font-size: clamp(20px, 6vw, 32px) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
  }

  .fresh-cover__masthead h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(48px, 16vw, 100px) !important;
    line-height: 0.86 !important;
    letter-spacing: -0.085em !important;
    white-space: nowrap !important;
    text-shadow: 0 2px 0 #fff, 0 8px 0 rgba(141, 47, 95, 0.08) !important;
  }

  .fresh-cover__masthead span {
    max-width: 100% !important;
    margin: 10px 0 0 !important;
    font-size: clamp(11px, 2.8vw, 14px) !important;
    line-height: 1.35 !important;
    letter-spacing: 0.055em !important;
  }

  .fresh-cover__portfolio-flourish {
    display: none !important;
  }

  .fresh-cover__brand {
    grid-area: brand;
    position: relative !important;
    inset: auto !important;
    justify-self: center;
    width: min(100%, 400px) !important;
    min-height: 88px;
    margin: 2px auto 6px !important;
    justify-content: center;
    gap: 14px !important;
    padding: 12px 16px !important;
    border-radius: 22px !important;
    box-shadow:
      0 16px 34px rgba(141, 47, 95, 0.12),
      0 0 0 1px rgba(255, 213, 227, 0.72) inset !important;
  }

  .fresh-cover__brand img {
    width: clamp(58px, 16vw, 72px) !important;
    height: clamp(58px, 16vw, 72px) !important;
    flex: 0 0 auto;
  }

  .fresh-cover__brand span {
    min-width: 0;
    font-size: clamp(18px, 5vw, 24px) !important;
  }

  .fresh-cover__brand span::after {
    font-size: clamp(10px, 2.8vw, 12px) !important;
    letter-spacing: 0.04em !important;
  }

  .fresh-cover__polaroid {
    grid-area: photo;
    width: min(100%, 400px) !important;
    max-width: 400px;
    justify-self: center;
    padding: 14px 14px 22px !important;
    transform: none !important;
    box-shadow:
      9px 11px 0 #ffd5e3,
      0 18px 32px rgba(141, 47, 95, 0.12) !important;
  }

  .fresh-cover__polaroid img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3.05;
  }

  .fresh-cover__polaroid strong {
    font-size: clamp(32px, 10vw, 48px) !important;
    line-height: 0.98 !important;
  }

  .fresh-cover__polaroid ul {
    margin-top: 14px !important;
    padding-top: 14px !important;
  }

  .fresh-cover__polaroid li {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    margin-bottom: 12px !important;
    font-size: clamp(14px, 3.7vw, 16px) !important;
    line-height: 1.45 !important;
  }

  .fresh-cover__polaroid li span {
    font-size: clamp(13px, 3.4vw, 15px) !important;
  }

  .fresh-cover__about {
    grid-area: about;
    width: 100%;
    max-width: 100% !important;
    padding-top: 4px !important;
  }

  .fresh-cover__label {
    margin-bottom: 18px !important;
    font-size: clamp(36px, 10vw, 64px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.08em !important;
  }

  .fresh-cover__about p:not(.fresh-cover__label),
  .fresh-cover__about p:nth-of-type(2) {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    font-size: clamp(16px, 4.1vw, 18px) !important;
    line-height: 1.6 !important;
  }

  .fresh-cover__about p:nth-of-type(2) {
    font-weight: 800 !important;
    line-height: 1.42 !important;
  }

  .fresh-cover__facts {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 12px !important;
    margin-top: 18px !important;
  }

  .fresh-cover__facts span {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px 10px 34px !important;
    border-radius: 16px;
    background: rgba(255, 234, 240, 0.72);
    font-size: clamp(15px, 4vw, 17px) !important;
    line-height: 1.35 !important;
  }

  .fresh-cover__facts span::before {
    left: 14px !important;
    top: 50% !important;
    width: 9px !important;
    height: 9px !important;
    transform: translateY(-50%);
  }

  .fresh-cover__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 22px !important;
  }

  .fresh-cover__actions a {
    width: 100%;
    min-height: 50px !important;
    min-width: 0 !important;
    font-size: clamp(15px, 4vw, 17px) !important;
  }

  .fresh-cover__star,
  .fresh-cover__flower,
  .fresh-cover::before,
  .fresh-cover__about::before,
  .fresh-cover__about::after,
  .intro-orb,
  .intro-dots,
  .sticker,
  .intro-deco,
  .hero-shape,
  .hero-scribble,
  .typing-line-art,
  .outline-shape {
    display: none !important;
  }

  [data-reveal],
  [data-reveal="left"],
  [data-reveal="right"],
  [data-reveal="up"] {
    transform: translateY(24px);
  }

  .services-panel,
  .projects-panel,
  .footer-panel,
  .archive-hero,
  .archive-category,
  .archive-section {
    padding: 50px 24px !important;
  }

  .skills-list,
  .featured-projects-grid,
  .archive-grid,
  .archive-grid--bubbl,
  .archive-grid--butter,
  .archive-grid--amara,
  .archive-grid--posters,
  .feed-device-showcase,
  .feed-device-pair,
  .footer-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .section-title,
  .section-title--skills,
  .projects-mega-title,
  .archive-category-title h2,
  .archive-hero__copy h1,
  .footer-panel h2 {
    font-size: clamp(40px, 13vw, 72px) !important;
    line-height: 0.95 !important;
    overflow-wrap: anywhere;
  }

  .skill-row {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 18px 0 !important;
  }

  .skill-index {
    font-size: clamp(34px, 12vw, 54px) !important;
  }

  .skill-copy h3,
  .featured-project-copy h3,
  .archive-heading h2,
  .feed-device-story__heading h3 {
    font-size: clamp(22px, 7vw, 34px) !important;
    line-height: 1.05 !important;
  }

  .skill-copy p,
  .skills-side-note p,
  .featured-project-copy span,
  .archive-hero__copy span,
  .archive-heading p,
  .more-projects-text,
  .feed-reference-cue,
  .footer-panel p,
  .contact-links a {
    font-size: clamp(15px, 4vw, 17px) !important;
    line-height: 1.55 !important;
  }

  .skill-copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px !important;
  }

  .skill-copy li {
    font-size: clamp(13px, 3.5vw, 15px) !important;
    line-height: 1.35 !important;
  }

  .featured-project-card,
  .featured-project-card--wide,
  .more-projects-panel,
  .archive-grid figure,
  .device-frame,
  .contact-photo-card {
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .featured-project-image,
  .featured-project-image--single,
  .featured-project-mosaic,
  .archive-grid img,
  .device-frame img,
  .contact-photo-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .archive-brand {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .archive-brand img {
    width: clamp(56px, 15vw, 72px) !important;
    height: clamp(56px, 15vw, 72px) !important;
  }

  .archive-jump-nav,
  .contact-links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .archive-jump-nav a,
  .archive-back-link,
  .contact-links a,
  .more-projects-link {
    min-height: 48px;
    width: 100%;
  }

  .device-frame--desktop {
    display: none !important;
  }

  .device-frame--phone {
    justify-self: center;
    width: min(100%, 280px) !important;
  }

  .project-preview__card,
  .poster-lightbox img {
    width: min(100%, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .project-preview__close,
  .poster-lightbox__close {
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .site-credit-line a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 428px) {
  .fresh-cover,
  .services-panel,
  .projects-panel,
  .footer-panel,
  .archive-hero,
  .archive-category,
  .archive-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .fresh-cover__brand {
    align-items: center;
    justify-content: flex-start;
  }

  .fresh-cover__brand span {
    font-size: clamp(17px, 5vw, 22px) !important;
  }

  .fresh-cover__masthead h1 {
    font-size: clamp(48px, 15.5vw, 72px) !important;
  }

  .fresh-cover__masthead span {
    max-width: 32ch !important;
  }
}

@media (max-width: 375px) {
  .fresh-cover,
  .services-panel,
  .projects-panel,
  .footer-panel,
  .archive-hero,
  .archive-category,
  .archive-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .fresh-cover__brand {
    gap: 10px !important;
    padding: 10px 12px !important;
  }

  .fresh-cover__brand img {
    width: 54px !important;
    height: 54px !important;
  }
}

/* v79: extend portfolio flourish toward brand badge and improve logo visibility. */
.fresh-cover__brand {
  z-index: 9;
  padding-left: clamp(10px, 0.95vw, 14px) !important;
}

.fresh-cover__brand img {
  width: clamp(90px, 5.9vw, 108px) !important;
  height: clamp(90px, 5.9vw, 108px) !important;
  background: #12080f;
  border: 4px solid rgba(255, 244, 248, 0.96);
  filter: saturate(1.18) contrast(1.18) brightness(1.08);
  box-shadow:
    0 14px 30px rgba(141, 47, 95, 0.2),
    0 0 0 7px rgba(217, 79, 141, 0.1) !important;
}

.fresh-cover__portfolio-flourish {
  left: clamp(250px, 20vw, 380px);
  top: clamp(10px, 1.6vw, 34px);
  width: clamp(720px, 62vw, 1180px);
}

.fresh-cover__portfolio-flourish path {
  stroke-width: 3.4;
  opacity: 0.58;
}

@media (max-width: 768px) {
  .fresh-cover__brand img {
    width: clamp(62px, 17vw, 76px) !important;
    height: clamp(62px, 17vw, 76px) !important;
    border-width: 3px;
  }

  .fresh-cover__portfolio-flourish {
    display: none !important;
  }
}

/* v80: show A Square logo as a larger square tile instead of a circular crop. */
.fresh-cover__brand {
  min-height: clamp(126px, 7.8vw, 150px);
  padding: clamp(12px, 1vw, 16px) clamp(22px, 2vw, 32px) clamp(12px, 1vw, 16px) clamp(12px, 1vw, 16px) !important;
  position: absolute;
}

.fresh-cover__brand img {
  width: clamp(104px, 6.8vw, 128px) !important;
  height: clamp(104px, 6.8vw, 128px) !important;
  border-radius: 20px !important;
  object-fit: contain !important;
  padding: 4px;
  background: #0f080d;
  border: 4px solid rgba(255, 244, 248, 0.98);
  filter: saturate(1.22) contrast(1.2) brightness(1.1);
  box-shadow:
    0 16px 34px rgba(141, 47, 95, 0.22),
    0 0 0 7px rgba(217, 79, 141, 0.1) !important;
}

.archive-brand img {
  border-radius: 16px !important;
  object-fit: contain !important;
  padding: 4px;
  background: #0f080d;
}

@media (max-width: 768px) {
  .fresh-cover__brand {
    min-height: 96px;
    padding: 12px 14px !important;
  }

  .fresh-cover__brand img {
    width: clamp(70px, 20vw, 86px) !important;
    height: clamp(70px, 20vw, 86px) !important;
    border-radius: 16px !important;
    padding: 3px;
  }
}

@media (max-width: 375px) {
  .fresh-cover__brand img {
    width: 68px !important;
    height: 68px !important;
  }
}

/* v83: keep the readable square logo cleanly inside the brand badge. */
.fresh-cover__brand {
  min-height: clamp(126px, 7.3vw, 142px);
  gap: clamp(18px, 1.65vw, 28px) !important;
  padding: clamp(14px, 1.05vw, 18px) clamp(24px, 2vw, 34px) clamp(14px, 1.05vw, 18px) clamp(20px, 1.45vw, 28px) !important;
  overflow: visible;
}

.fresh-cover__brand img {
  width: clamp(96px, 5.65vw, 112px) !important;
  height: clamp(96px, 5.65vw, 112px) !important;
  border-radius: 18px !important;
  padding: 3px;
  box-shadow:
    0 10px 24px rgba(141, 47, 95, 0.18),
    0 0 0 4px rgba(217, 79, 141, 0.1) !important;
}

@media (max-width: 768px) {
  .fresh-cover__brand {
    min-height: 96px;
    gap: 12px !important;
    padding: 12px 14px !important;
  }

  .fresh-cover__brand img {
    width: clamp(68px, 19vw, 82px) !important;
    height: clamp(68px, 19vw, 82px) !important;
    border-radius: 15px !important;
    box-shadow:
      0 10px 20px rgba(141, 47, 95, 0.16),
      0 0 0 3px rgba(217, 79, 141, 0.08) !important;
  }
}

@media (max-width: 375px) {
  .fresh-cover__brand img {
    width: 66px !important;
    height: 66px !important;
  }
}

/* v84: mobile logo-only badge and smaller device preview section. */
.feed-device-story {
  max-width: 860px;
  margin-inline: auto;
}

.feed-device-pair {
  max-width: 800px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(130px, 0.3fr);
  gap: clamp(16px, 2.8vw, 34px);
}

.feed-device-pair .device-frame--desktop {
  width: min(100%, 540px);
  justify-self: end;
}

.feed-device-pair .device-frame--phone {
  width: min(100%, 150px);
  justify-self: start;
}

.device-frame--desktop .device-frame__screen {
  max-height: min(44vh, 390px);
}

@media (max-width: 900px) {
  .feed-device-pair .device-frame--desktop {
    width: min(100%, 460px);
    justify-self: center;
  }

  .feed-device-pair .device-frame--phone {
    width: min(54vw, 180px);
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .fresh-cover__brand,
  .archive-brand {
    width: max-content !important;
    max-width: 100% !important;
    min-height: auto !important;
    justify-self: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 12px !important;
    border-radius: 30px !important;
  }

  .fresh-cover__brand span,
  .archive-brand span {
    display: none !important;
  }

  .fresh-cover__brand img,
  .archive-brand img {
    width: clamp(102px, 30vw, 122px) !important;
    height: clamp(102px, 30vw, 122px) !important;
    border-radius: 22px !important;
  }

  .feed-device-pair .device-frame--phone {
    width: min(58vw, 190px) !important;
  }
}

@media (max-width: 375px) {
  .fresh-cover__brand img,
  .archive-brand img {
    width: 104px !important;
    height: 104px !important;
  }
}

/* v86: remove the skills footnote and make featured projects symmetrical. */
.skills-side-note {
  display: none !important;
}

.featured-projects-grid {
  width: min(100%, 1180px) !important;
  margin-inline: auto !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.featured-project-card,
.featured-project-card:nth-child(2),
.featured-project-card:nth-child(3) {
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  min-width: 0 !important;
  height: 100% !important;
  transform: none !important;
}

.featured-project-card:hover,
.featured-project-card:nth-child(2):hover,
.featured-project-card:nth-child(3):hover {
  transform: translateY(-6px) !important;
}

.featured-project-image,
.featured-project-image--single,
.featured-project-mosaic,
.featured-project-card:nth-child(3) .featured-project-image--single {
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1.12 !important;
}

.featured-project-image img,
.featured-project-image--single img,
.featured-project-mosaic img,
.featured-project-card:nth-child(3) .featured-project-image--single img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

.featured-project-copy {
  display: grid;
  align-content: start;
  min-height: 146px;
  padding-top: 10px !important;
}

@media (max-width: 860px) {
  .featured-projects-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 430px !important;
  }

  .featured-project-copy {
    min-height: 0;
  }
}
