:root {
  --bg: #fff7fb;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 252, 255, 0.72);
  --surface-strong: rgba(255, 248, 252, 0.92);
  --text: #5b3b47;
  --text-soft: #8f6675;
  --accent: #dd84a6;
  --accent-strong: #c6648b;
  --accent-soft: #ffd9e7;
  --peach: #ffdccc;
  --butter: #ffefc7;
  --sage: #d7e7d5;
  --line: rgba(141, 94, 112, 0.16);
  --shadow: 0 24px 70px rgba(207, 117, 155, 0.18);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Mulish", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 214, 231, 0.95),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 232, 194, 0.75),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(214, 231, 215, 0.6),
      transparent 26%
    ),
    linear-gradient(180deg, #fff9fc 0%, #fffaf5 54%, #fff7f3 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    rgba(221, 132, 166, 0.09) 0.8px,
    transparent 0.8px
  );
  background-size: 18px 18px;
  opacity: 0.4;
  pointer-events: none;
}

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

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

.aurora {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.aurora-one {
  top: 8%;
  left: -4%;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 183, 211, 0.7);
}

.aurora-two {
  top: 30%;
  right: -5%;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 224, 178, 0.65);
}

.aurora-three {
  bottom: 6%;
  left: 20%;
  width: 20rem;
  height: 20rem;
  background: rgba(201, 226, 204, 0.45);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.panel {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-nested {
  background: var(--surface-strong);
  box-shadow: none;
}

.topbar {
  position: sticky;
  top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  z-index: 5;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--text-soft);
  font-weight: 700;
}

.nav a {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 226, 237, 0.8);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.4rem;
  padding: 2rem;
}

.hero-copy,
.profile-card,
.about-grid article,
.stack,
.focus-card,
.checklist-card,
.connect {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0 0 0.7rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.4rem;
}

.alias {
  margin: 0.4rem 0 1.1rem;
  color: var(--text-soft);
  font-size: 1.15rem;
  font-weight: 700;
}

.lede,
.panel p,
.detail-list,
.checklist {
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.7rem 0 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-strong) 100%
  );
  box-shadow: 0 14px 30px rgba(198, 100, 139, 0.28);
}

.button-secondary {
  background: rgba(255, 241, 246, 0.9);
  border: 1px solid rgba(198, 100, 139, 0.18);
}

.tag-row,
.language-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tag-row span,
.language-cloud span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 100, 139, 0.12);
  background: rgba(255, 247, 250, 0.82);
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.tag-row.soft span:nth-child(2n) {
  background: rgba(255, 247, 209, 0.8);
}

.tag-row.soft span:nth-child(3n) {
  background: rgba(224, 241, 225, 0.85);
}

.profile-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.2rem;
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(198, 100, 139, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 233, 243, 0.85),
    rgba(255, 249, 252, 0.9)
  );
}

.portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.portrait-glow {
  position: absolute;
  inset: auto auto -15% -10%;
  width: 70%;
  height: 50%;
  border-radius: 999px;
  background: rgba(255, 220, 206, 0.65);
  filter: blur(26px);
}

.profile-card-body {
  padding: 0 0.2rem 0.2rem;
}

.detail-list,
.checklist {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.detail-list li,
.checklist li {
  margin-bottom: 0.7rem;
}

.about-grid,
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.about-grid article,
.focus-grid article,
.stack,
.connect {
  padding: 1.7rem;
}

.quote-card {
  background: linear-gradient(
    145deg,
    rgba(255, 244, 248, 0.95),
    rgba(255, 249, 238, 0.88)
  );
}

.quote {
  margin: 0.2rem 0 1.25rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.stack {
  margin-top: 1.25rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.interest-card {
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(198, 100, 139, 0.12);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.62),
    rgba(255, 244, 248, 0.85)
  );
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.interest-card:nth-child(2n) {
  background: linear-gradient(
    155deg,
    rgba(255, 249, 238, 0.9),
    rgba(255, 250, 253, 0.85)
  );
}

.interest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(198, 100, 139, 0.12);
}

.interest-card p {
  margin: 0.8rem 0 0;
}

.language-cloud span:nth-child(3n) {
  background: rgba(255, 239, 199, 0.85);
}

.language-cloud span:nth-child(4n) {
  background: rgba(220, 239, 221, 0.8);
}

.focus-card {
  background: linear-gradient(
    145deg,
    rgba(255, 248, 252, 0.92),
    rgba(255, 243, 231, 0.82)
  );
}

.checklist-card {
  background: linear-gradient(
    145deg,
    rgba(250, 255, 251, 0.88),
    rgba(255, 245, 249, 0.88)
  );
}

.checklist li::marker {
  color: var(--accent);
}

.connect {
  margin-top: 1.25rem;
  text-align: center;
}

.connect-actions {
  justify-content: center;
  margin-top: 0.8rem;
}

.footer {
  padding: 1.5rem 0 0.75rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 860px) {
  .topbar {
    position: static;
    justify-content: center;
    text-align: center;
  }

  .hero,
  .about-grid,
  .focus-grid,
  .interest-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.4rem;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 100%);
  }

  .topbar,
  .about-grid article,
  .focus-grid article,
  .stack,
  .connect {
    padding: 1.2rem;
  }

  .nav {
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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