/* —————————————————————————————————————————————
   ANIKA — a bright, people-first portfolio
   ————————————————————————————————————————————— */

:root {
  --pink: #f70487;
  --pink-bright: #ff3dad;
  --pink-soft: #ffcfe4;
  --pink-pale: #ffe9f2;
  --ink: #17152f;
  --cream: #fff8ee;
  --white: #fffdf9;
  --yellow: #ffd638;
  --blue: #74cbff;
  --blue-dark: #3267e3;
  --mint: #a8e7c1;
  --line: 2px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --font-body: "Bricolage Grotesque", sans-serif;
  --font-script: "Leckerli One", cursive;
  --page-gutter: clamp(1.25rem, 4vw, 4rem);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--pink) var(--pink-pale);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-optical-sizing: auto;
  font-kerning: normal;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--pink);
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-kerning: normal;
  line-height: 1;
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: 1rem;
  padding: 0.7rem 1rem;
  border: var(--line);
  border-radius: 100px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 36px), 1380px);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.65rem 0.75rem 0.65rem 1.5rem;
  border: var(--line);
  border-radius: 100px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 7px 0 rgba(23, 21, 47, 0.11);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: min-height 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 5px 0 rgba(23, 21, 47, 0.16);
}

.logo {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  color: var(--pink);
  font-family: var(--font-script);
  font-size: 2.15rem;
  line-height: 1;
  text-decoration: none;
  transform: rotate(-5deg);
}

.logo span {
  color: var(--ink);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.8rem);
}

.primary-nav a {
  position: relative;
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.65rem 1.1rem;
  border: var(--line);
  border-radius: 100px;
  color: var(--white);
  background: var(--pink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(2px, 2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: var(--line);
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform 180ms ease;
}

/* Shared */
section[id] {
  scroll-margin-top: 92px;
}

.section {
  position: relative;
  padding: clamp(6.5rem, 10vw, 10rem) var(--page-gutter);
}

.section > * {
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  color: var(--pink-soft);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.section-label--ink {
  color: var(--ink);
}

.section-label--light {
  color: var(--pink-soft);
}

.display-title {
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 7.7vw, 8.4rem);
  font-stretch: normal;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
}

.display-title em {
  color: var(--pink);
  font-family: var(--font-script);
  font-size: 0.9em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.section-intro {
  max-width: 39rem;
  color: rgba(23, 21, 47, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5;
}

.script-note {
  margin-bottom: 0.75rem;
  color: var(--pink);
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.1;
  transform: rotate(-2deg);
}

.card-kicker {
  margin-bottom: 0.85rem;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 56px;
  padding: 0.8rem 1.45rem;
  border: var(--line);
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button--ink {
  color: var(--white);
  background: var(--ink);
}

.button--ink:hover {
  box-shadow: 2px 2px 0 var(--pink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: none;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(1000px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 9.5rem max(var(--page-gutter), calc((100vw - var(--max-width)) / 2)) 5.5rem;
  overflow: hidden;
  background-color: var(--pink);
  background-image:
    radial-gradient(circle at 73% 17%, rgba(255, 255, 255, 0.25) 0 2px, transparent 2.5px),
    radial-gradient(circle at 73% 17%, rgba(255, 255, 255, 0.13), transparent 26%),
    linear-gradient(120deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 59%, transparent 59%);
  background-size: 24px 24px, auto, auto;
}

.hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 38vw;
  height: 38vw;
  min-width: 380px;
  min-height: 380px;
  top: 15%;
  right: -10%;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.05), 0 0 0 140px rgba(255, 255, 255, 0.04);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.eyebrow {
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 1.5rem 0 1rem;
  color: var(--white);
  line-height: 0.68;
}

.hero-hello {
  display: block;
  margin-left: 0.15em;
  color: var(--ink);
  font-size: clamp(3.5rem, 7.2vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-name {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(6rem, 12.6vw, 13.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-shadow: 5px 6px 0 var(--ink);
  transform: rotate(-4deg);
  transform-origin: left center;
}

.hero-intro {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 560;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.hero-actions .text-link {
  color: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  justify-self: end;
  padding: 2rem 2rem 1.5rem;
}

.portrait-backdrop {
  position: absolute;
  inset: 6% 0 4% 8%;
  border: var(--line);
  border-radius: 48% 48% 28% 28% / 32% 32% 18% 18%;
  background:
    linear-gradient(45deg, var(--pink-soft) 25%, transparent 25% 75%, var(--pink-soft) 75%),
    linear-gradient(45deg, var(--pink-soft) 25%, var(--white) 25% 75%, var(--pink-soft) 75%);
  background-position: 0 0, 17px 17px;
  background-size: 34px 34px;
  transform: rotate(5deg);
  box-shadow: 14px 14px 0 var(--ink);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 48% 48% 28% 28% / 30% 30% 16% 16%;
  outline: 2px solid var(--ink);
  background: var(--blue);
  box-shadow: 10px 10px 0 rgba(23, 21, 47, 0.25);
  transform: rotate(-2deg);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:hover .portrait-frame {
  transform: rotate(0deg) translateY(-4px);
}

.portrait-frame::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(to top, rgba(247, 4, 135, 0.22), transparent 45%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.sticker {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 1rem;
  border: var(--line);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--ink);
}

.sticker--status {
  top: 16%;
  left: -2%;
  background: var(--white);
  transform: rotate(-7deg);
}

.sticker--status span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: #23b35c;
  box-shadow: 0 0 0 3px rgba(35, 179, 92, 0.17);
}

.sticker--location {
  right: -1%;
  bottom: 11%;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(6deg);
}

.sticker--location span {
  color: var(--pink);
}

.portrait-squiggle {
  position: absolute;
  right: -5%;
  top: 5%;
  color: var(--white);
  transform: rotate(-5deg);
}

.hero-scroll {
  position: absolute;
  left: var(--page-gutter);
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero-doodle {
  position: absolute;
  z-index: 0;
  color: var(--white);
  font-family: var(--font-script);
  line-height: 1;
  opacity: 0.72;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.hero-doodle--one {
  left: 3%;
  top: 18%;
  font-size: 2.6rem;
}

.hero-doodle--two {
  left: 48%;
  bottom: 10%;
  font-size: 3.5rem;
  animation-delay: -1.2s;
}

.hero-doodle--three {
  right: 2.5%;
  bottom: 29%;
  font-size: 2.4rem;
  animation-delay: -2.2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-group {
  min-width: 100vw;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.7rem;
  padding: 0.9rem 0.85rem;
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-group b {
  color: var(--pink-bright);
  font-size: 0.9em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* About */
.about {
  color: var(--white);
  background:
    radial-gradient(circle at 9% 85%, rgba(247, 4, 135, 0.17), transparent 24%),
    radial-gradient(circle at 92% 15%, rgba(116, 203, 255, 0.09), transparent 23%),
    var(--ink);
}

.about::after {
  position: absolute;
  content: "♡";
  right: 3vw;
  top: 7rem;
  color: var(--pink);
  font-family: var(--font-script);
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 1;
  opacity: 0.16;
  transform: rotate(12deg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.about-heading h2 {
  margin-bottom: 0;
  font-size: clamp(4.4rem, 9.2vw, 9.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.about-heading h2 em {
  color: var(--pink);
  font-family: var(--font-script);
  font-size: 0.85em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.about-story {
  padding-top: 2rem;
  color: rgba(255, 253, 249, 0.7);
  font-size: 1.05rem;
}

.about-story p {
  margin-bottom: 1.35rem;
}

.about-story .about-lead {
  color: var(--white);
  font-size: clamp(1.35rem, 2.15vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.34;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.fact-card {
  min-height: 220px;
  padding: 1.5rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--mint);
  transform: rotate(-1deg);
  transition: transform 180ms ease;
}

.fact-card:nth-child(even) {
  transform: rotate(1.5deg) translateY(12px);
}

.fact-card:hover {
  transform: rotate(0) translateY(-8px);
}

.fact-card--pink {
  background: var(--pink-soft);
}

.fact-card--blue {
  background: var(--blue);
}

.fact-card--cream {
  background: var(--yellow);
}

.fact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 2rem;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.4rem;
}

.fact-card p {
  margin-bottom: 0.25rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

/* Education */
.education {
  background-color: var(--pink-soft);
  background-image:
    linear-gradient(rgba(23, 21, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 47, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.education-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  column-gap: 5rem;
}

.education-heading .section-label {
  grid-column: 1 / -1;
}

.education-heading .section-intro {
  align-self: end;
  padding-bottom: 1rem;
}

.education-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: clamp(1.2rem, 2.4vw, 2.5rem);
  margin-top: 5rem;
}

.education-card {
  overflow: hidden;
  border: var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.education-card:nth-child(2) {
  transform: translateY(2.5rem);
}

.education-card:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(5px, 5px);
}

.education-card:nth-child(2):hover {
  transform: translate(5px, calc(2.5rem + 5px));
}

.education-photo {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--blue);
}

.education-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.education-card:first-child .education-photo img {
  image-rendering: auto;
}

.education-card:hover .education-photo img {
  transform: scale(1.06);
}

.education-photo span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--ink);
}

.education-content {
  position: relative;
  min-height: 285px;
  padding: 1.7rem 1.7rem 6rem;
}

.education-content h3 {
  max-width: 18rem;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.grade {
  position: absolute;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1.5px solid rgba(23, 21, 47, 0.25);
}

.grade strong {
  color: var(--pink);
  font-size: 2.7rem;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.grade span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Skills */
.skills {
  background: var(--cream);
}

.skills::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  right: 4vw;
  top: 8rem;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--pink) 0 10deg, transparent 10deg 20deg);
  opacity: 0.18;
}

.skills-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 4rem;
}

.skills-title-row .section-intro {
  padding-bottom: 1rem;
}

.skills-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 5rem;
}

.skill-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 3rem);
  border: var(--line);
  border-radius: var(--radius-lg);
}

.skill-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.025em;
  line-height: 1;
}

.skill-card p {
  max-width: 33rem;
  font-size: 1.05rem;
}

.skill-number {
  position: absolute;
  top: 1.5rem;
  right: 1.7rem;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.skill-icon {
  width: 82px;
  height: 82px;
  margin: 1rem 0 3rem;
  color: var(--white);
}

.skill-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.skill-card--office {
  color: var(--white);
  background: var(--pink);
}

.skill-card--office::after {
  position: absolute;
  content: "";
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -110px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.08), 0 0 0 64px rgba(255, 255, 255, 0.05);
}

.tag-row {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-row span {
  padding: 0.45rem 0.75rem;
  border: 1.5px solid var(--white);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 760;
}

.skill-card--communication {
  color: var(--ink);
  background: var(--blue);
}

.speech-bubbles {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0 3.25rem;
}

.speech-bubbles span {
  position: relative;
  display: grid;
  min-width: 72px;
  height: 58px;
  padding: 0 1rem;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--white);
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-6deg);
}

.speech-bubbles span:nth-child(2) {
  margin-top: 2rem;
  color: var(--white);
  background: var(--pink);
  transform: rotate(7deg);
}

.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.language-list span {
  padding: 0.5rem 0.9rem;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 800;
}

.language-list .learning {
  color: var(--white);
  background: var(--ink);
}

.skill-card--management {
  min-height: 390px;
  background: var(--yellow);
}

.skill-card--management .script-note {
  margin-top: 1.5rem;
}

.skill-card--management ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  margin: 2.5rem 0 0;
  list-style: none;
}

.skill-card--management li {
  padding: 1rem 0.5rem 1rem 0;
  border-top: 1.5px solid rgba(23, 21, 47, 0.35);
  font-weight: 720;
}

.skill-card--management li span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-right: 0.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
  font-size: 0.7rem;
}

.skill-card--achievement {
  min-height: 390px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 2rem;
  color: var(--white);
  background: var(--ink);
}

.skill-card--achievement .skill-number {
  z-index: 2;
}

.skill-card--achievement h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.skill-card--achievement p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.skill-card--achievement .text-link {
  margin-top: 0.5rem;
  color: var(--pink-soft);
}

.certificate-preview {
  padding: 0;
  overflow: hidden;
  border: 7px solid var(--white);
  outline: 2px solid var(--pink);
  background: var(--white);
  box-shadow: 9px 9px 0 var(--pink);
  cursor: zoom-in;
  transform: rotate(4deg);
  transition: transform 180ms ease;
}

.certificate-preview:hover {
  transform: rotate(1deg) scale(1.02);
}

.certificate-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Goals */
.goals {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(247, 4, 135, 0.18), transparent 22%),
    var(--ink);
}

.goals::before {
  position: absolute;
  content: "";
  width: 350px;
  height: 350px;
  left: -180px;
  bottom: -150px;
  border: 55px solid rgba(116, 203, 255, 0.08);
  border-radius: 50%;
}

.goals-stars {
  position: absolute;
  right: 5%;
  top: 9rem;
  width: auto !important;
  margin: 0 !important;
  color: var(--pink);
  font-size: 1.7rem;
  letter-spacing: 0.25rem;
  transform: rotate(8deg);
}

.goals-heading {
  text-align: center;
}

.goals-heading .section-label {
  justify-content: center;
}

.goals-heading .display-title {
  margin-bottom: 0;
}

.goals-heading .display-title em {
  color: var(--pink-bright);
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
  margin-top: clamp(5rem, 9vw, 9rem);
}

.roadmap-line {
  position: absolute;
  z-index: 0;
  top: -4.5rem;
  right: 2%;
  left: 2%;
  height: 8rem;
  color: var(--pink);
}

.roadmap-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 9 11;
  stroke-linecap: round;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.goal-card {
  position: relative;
  z-index: 1;
  min-height: 440px;
  padding: 2rem 2rem 5.5rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--pink-soft);
  box-shadow: 8px 8px 0 var(--pink);
}

.goal-card--two {
  margin-top: 3rem;
  background: var(--blue);
}

.goal-card--three {
  margin-top: 0.75rem;
  background: var(--yellow);
}

.goal-dot {
  position: absolute;
  top: -5.7rem;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px var(--pink);
}

.goal-card--two .goal-dot {
  top: -5.35rem;
}

.goal-card--three .goal-dot {
  top: -5.85rem;
}

.goal-time {
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.goal-card h3 {
  margin: 2rem 0 1.5rem;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.goal-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.goal-card li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.4rem;
  border-top: 1px solid rgba(23, 21, 47, 0.25);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.35;
}

.goal-card li::before {
  position: absolute;
  content: "✦";
  left: 0;
  color: var(--pink);
  font-size: 0.72rem;
}

.goal-index {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  color: rgba(23, 21, 47, 0.14);
  font-family: var(--font-script);
  font-size: 4.5rem;
  line-height: 1;
}

/* Life & photos */
.life {
  overflow: hidden;
  background-color: var(--pink-pale);
  background-image: radial-gradient(rgba(247, 4, 135, 0.15) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}

.life::before {
  position: absolute;
  content: "MY PHOTOS";
  right: -6rem;
  top: 50%;
  color: rgba(247, 4, 135, 0.07);
  font-size: clamp(7rem, 16vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(90deg) translateY(-50%);
}

.life-heading {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin-left: 0 !important;
}

.interest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.interest-pills span {
  padding: 0.55rem 0.95rem;
  border: var(--line);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--ink);
}

.interest-pills span:nth-child(2) {
  background: var(--mint);
  transform: rotate(-2deg);
}

.interest-pills span:nth-child(3) {
  background: var(--yellow);
  transform: rotate(2deg);
}

.photo-wall {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.95fr;
  grid-template-rows: 230px 230px 190px;
  gap: 1.5rem;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.photo-card {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 10px 48px;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.photo-card:hover {
  z-index: 5;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(0deg) scale(1.025);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.photo-card span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  left: 0.8rem;
  overflow: hidden;
  font-family: var(--font-script);
  font-size: 1.05rem;
  line-height: 1.5rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-card--one {
  grid-row: 1 / 3;
  transform: rotate(-2.5deg);
}

.photo-card--one img {
  object-position: center 33%;
}

.photo-card--two {
  grid-column: 2 / 4;
  transform: rotate(1.5deg);
}

.photo-card--three {
  grid-row: 2 / 4;
  transform: rotate(2.2deg);
}

.photo-card--four {
  transform: rotate(-1.7deg);
}

.photo-note {
  align-self: center;
  justify-self: center;
  width: min(100%, 280px);
  padding: 1.6rem;
  border: var(--line);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
  transform: rotate(3deg);
}

.photo-note span {
  color: var(--pink);
  font-family: var(--font-script);
  font-size: 3.2rem;
  line-height: 0.8;
}

.photo-note p {
  margin: 0.6rem 0 0;
  font-weight: 750;
  line-height: 1.25;
}

/* Contact */
.contact {
  isolation: isolate;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--pink);
  text-align: center;
}

.contact::before,
.contact::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.contact::before {
  width: 34vw;
  height: 34vw;
  min-width: 420px;
  min-height: 420px;
  left: -15vw;
  top: -15vw;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.05), 0 0 0 110px rgba(255, 255, 255, 0.035);
}

.contact::after {
  width: 25vw;
  height: 25vw;
  right: -8vw;
  bottom: -12vw;
  box-shadow: 0 0 0 45px rgba(23, 21, 47, 0.08), 0 0 0 90px rgba(23, 21, 47, 0.04);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact .script-note {
  color: var(--yellow);
}

.contact h2 {
  margin-bottom: 3.5rem;
  font-size: clamp(3.4rem, 8vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.contact h2 em {
  color: var(--ink);
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.email-link {
  display: flex;
  width: min(100%, 860px);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1.1rem 1.1rem 1.1rem 1.7rem;
  overflow: hidden;
  border: var(--line);
  border-radius: 100px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  font-size: clamp(0.9rem, 2.2vw, 1.55rem);
  font-weight: 750;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.email-link:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(4px, 4px);
}

.email-link b {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 1.3rem;
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.4rem;
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-details p {
  margin: 0;
}

.contact-star {
  position: absolute;
  width: auto !important;
  margin: 0 !important;
  color: var(--white);
  font-family: var(--font-script);
  line-height: 1;
  animation: float 4s ease-in-out infinite;
}

.contact-star--two {
  right: 9%;
  top: 21%;
  color: var(--yellow);
  font-size: 6rem;
  animation-delay: -2s;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem var(--page-gutter);
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
}

.logo--footer {
  width: fit-content;
}

.logo--footer span {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

/* Dialogs */
.image-dialog {
  width: min(92vw, 1100px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--pink);
}

.image-dialog::backdrop {
  background: rgba(23, 21, 47, 0.82);
  backdrop-filter: blur(7px);
}

.image-dialog[open] {
  animation: dialog-in 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-bar {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.65rem 0.65rem 1.2rem;
  border-bottom: var(--line);
  background: var(--pink-soft);
}

.dialog-bar p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.image-dialog > img {
  width: 100%;
  max-height: calc(92vh - 60px);
  object-fit: contain;
  background: var(--ink);
}

.image-dialog--photo {
  width: auto;
  max-width: min(92vw, 1100px);
}

.image-dialog--photo > img {
  width: auto;
  max-width: 100%;
  max-height: calc(92vh - 60px);
  margin: 0 auto;
}

/* Reveal */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html.js .hero .reveal:nth-child(2) { transition-delay: 80ms; }
html.js .hero .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .hero .reveal:nth-child(4) { transition-delay: 240ms; }

/* Responsive */
@media (min-width: 901px) {
  .about-heading h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 0.86fr;
    gap: 1rem;
  }

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

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

  .fact-card:nth-child(even) {
    transform: rotate(1deg);
  }

  .education-list {
    gap: 1rem;
  }

  .education-photo {
    height: 210px;
  }

  .education-content {
    padding-right: 1.3rem;
    padding-left: 1.3rem;
  }

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

  .certificate-preview {
    width: 75%;
    justify-self: center;
  }

  .goal-card {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 24px);
    top: 12px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-open .menu-toggle > span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: -14px -14px auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 7rem 2.2rem 3rem;
    border: 2px solid var(--ink);
    border-radius: 32px;
    background: var(--pink-soft);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .menu-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(23, 21, 47, 0.2);
    font-size: clamp(1.8rem, 8vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.1;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 8.5rem;
    padding-bottom: 6rem;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-title {
    margin-top: 1.25rem;
  }

  .hero-visual {
    width: min(92%, 590px);
    margin-top: 1rem;
    justify-self: center;
  }

  .hero-doodle--three {
    bottom: 20%;
  }

  .about-grid,
  .education-heading,
  .skills-title-row {
    grid-template-columns: 1fr;
  }

  .about-story {
    max-width: 650px;
    padding-top: 0;
  }

  .education-heading .section-label {
    grid-column: auto;
  }

  .education-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .education-card,
  .education-card:nth-child(2) {
    display: grid;
    grid-template-columns: minmax(230px, 0.8fr) 1fr;
    transform: none;
  }

  .education-card:nth-child(2):hover {
    transform: translate(5px, 5px);
  }

  .education-photo {
    height: auto;
    min-height: 330px;
    border-right: var(--line);
    border-bottom: 0;
  }

  .skills-bento {
    grid-template-columns: 1fr;
  }

  .skill-card--achievement {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .certificate-preview {
    width: 100%;
  }

  .roadmap {
    grid-template-columns: 1fr;
    max-width: 670px;
  }

  .roadmap-line {
    top: 0;
    bottom: 0;
    left: 18px;
    width: 3px;
    height: auto;
    border-left: 3px dashed var(--pink);
  }

  .roadmap-line svg {
    display: none;
  }

  .goal-card,
  .goal-card--two,
  .goal-card--three {
    min-height: 0;
    margin-top: 0;
    margin-left: 3.2rem;
  }

  .goal-dot,
  .goal-card--two .goal-dot,
  .goal-card--three .goal-dot {
    top: 2rem;
    left: -3.95rem;
  }

  .photo-wall {
    grid-template-rows: 210px 210px 175px;
  }
}

@media (max-width: 680px) {
  :root {
    --radius-lg: 30px;
    --shadow: 5px 5px 0 var(--ink);
  }

  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .display-title {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .hero-title {
    margin-top: 1.75rem;
  }

  .hero-hello {
    font-size: clamp(3.3rem, 17.5vw, 5.5rem);
  }

  .hero-name {
    font-size: clamp(6rem, 31vw, 9.4rem);
    text-shadow: 3px 4px 0 var(--ink);
  }

  .hero-intro {
    max-width: 32rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-visual {
    width: 100%;
    padding: 1.7rem 1.5rem 1rem;
  }

  .portrait-frame {
    border-width: 7px;
  }

  .sticker--status {
    top: 13%;
    left: 0;
  }

  .sticker--location {
    right: -1%;
  }

  .portrait-squiggle {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .marquee-group {
    gap: 1rem;
  }

  .about-heading h2 {
    font-size: clamp(3.7rem, 18vw, 5.6rem);
  }

  .about-facts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fact-card,
  .fact-card:nth-child(even) {
    min-height: 180px;
    transform: none;
  }

  .fact-icon {
    margin-bottom: 1.3rem;
  }

  .education-list {
    margin-top: 3rem;
  }

  .education-card,
  .education-card:nth-child(2) {
    display: block;
  }

  .education-photo {
    height: 230px;
    min-height: 0;
    border-right: 0;
    border-bottom: var(--line);
  }

  .education-content {
    min-height: 260px;
  }

  .skill-card {
    min-height: 440px;
    padding: 1.5rem;
  }

  .tag-row {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .skill-card--management {
    min-height: 440px;
  }

  .skill-card--management ul {
    grid-template-columns: 1fr;
    margin-top: 1.6rem;
  }

  .skill-card--achievement {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: 4rem;
  }

  .certificate-preview {
    margin: 1rem 0;
  }

  .goals-heading {
    text-align: left;
  }

  .goals-heading .section-label {
    justify-content: flex-start;
  }

  .goals-stars {
    display: none;
  }

  .roadmap {
    margin-top: 4rem;
  }

  .goal-card,
  .goal-card--two,
  .goal-card--three {
    min-height: 420px;
    margin-left: 1.6rem;
    padding: 1.5rem 1.4rem 5rem;
  }

  .roadmap-line {
    left: 6px;
  }

  .goal-dot,
  .goal-card--two .goal-dot,
  .goal-card--three .goal-dot {
    left: -2.25rem;
    width: 18px;
    height: 18px;
    border-width: 4px;
  }

  .photo-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 230px 270px 180px;
    gap: 1rem;
  }

  .photo-card--one {
    grid-row: 1;
    grid-column: 1;
  }

  .photo-card--two {
    grid-row: 1;
    grid-column: 2;
  }

  .photo-card--three {
    grid-row: 2 / 4;
    grid-column: 1;
  }

  .photo-card--four {
    grid-row: 2;
    grid-column: 2;
  }

  .photo-note {
    grid-row: 3;
    grid-column: 2;
    align-self: start;
  }

  .contact {
    min-height: 680px;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .contact h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .email-link {
    padding-left: 1.1rem;
  }

  .email-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .email-link b {
    width: 44px;
    height: 44px;
  }

  .contact-details {
    align-items: center;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .logo--footer {
    margin: 0 auto;
  }

  .site-footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 62px;
    padding-left: 1.15rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-name {
    font-size: 28vw;
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  .sticker {
    padding: 0.55rem 0.65rem;
    font-size: 0.64rem;
  }

  .photo-wall {
    display: flex;
    flex-direction: column;
  }

  .photo-card {
    height: 360px;
    transform: none;
  }

  .photo-card--two,
  .photo-card--four {
    height: 270px;
  }

  .photo-note {
    align-self: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
