:root {
  --ink: #17191d;
  --muted: #62666d;
  --paper: #f5f5f3;
  --white: #fff;
  --blue: #e8edf5;
  --accent: #315a92;
  --line: #d9dadd;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: auto;
}
header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: rgba(245, 245, 243, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 13px;
  color: #45484e;
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 6px;
}
.menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}
.hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 72px;
}
.availability {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}
.availability span {
  width: 8px;
  height: 8px;
  background: #55a66c;
  border-radius: 50%;
}
.hero h1,
.section-head h2,
.info h2,
.contact h2 {
  font:
    500 clamp(45px, 5.2vw, 70px) / 0.95 Newsreader,
    serif;
  letter-spacing: -0.04em;
  margin: 0;
}
.hero-copy > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin: 25px 0 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.button {
  display: inline-block;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.plain-link {
  font-size: 13px;
  font-weight: 600;
}
.hero-card {
  border: 0;
  padding: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(28, 38, 53, 0.12);
  text-align: left;
  cursor: pointer;
  transform: rotate(1.5deg);
  transition: transform 0.25s;
}
.hero-card:hover {
  transform: rotate(0);
}
.hero-card img {
  height: 335px;
  object-fit: cover;
}
.hero-card span {
  display: block;
  padding: 14px 16px;
  font-size: 12px;
  color: var(--muted);
}
.work {
  padding-top: 100px;
  padding-bottom: 115px;
  border-top: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 13px;
}
.section-head h2 {
  font-size: 53px;
}
.section-head > p {
  max-width: 430px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.art-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.art-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 28, 40, 0.08);
}
.art-card img {
  height: 250px;
  object-fit: cover;
}
.art-card:nth-child(1) img {
  object-position: center 38%;
}
.art-card:nth-child(2) img {
  object-position: center 35%;
}
.art-card:nth-child(3) img {
  object-position: center 38%;
}
.art-card:nth-child(4) img {
  object-position: center 42%;
}
.art-card > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 14px;
}
.art-card b {
  font-size: 13px;
}
.art-card small {
  font-size: 11px;
  color: var(--muted);
}
.art-card.wide {
  grid-column: span 2;
}
.art-card.wide img {
  object-position: center 42%;
}
.commissions {
  background: var(--blue);
  padding: 105px 0;
}
.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.commission-grid article {
  background: #fff;
  border-radius: 9px;
  padding: 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.card-top strong {
  font-size: 13px;
  color: var(--ink);
}
.commission-grid h3 {
  font:
    500 32px Newsreader,
    serif;
  margin: 37px 0 12px;
}
.commission-grid article > p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.commission-grid ul {
  font-size: 12px;
  line-height: 1.9;
  color: #484c52;
  padding-left: 17px;
  margin: 18px 0;
}
.commission-grid a {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.commission-grid .custom-card {
  grid-column: 1/-1;
  min-height: 0;
  display: grid;
  grid-template-columns: 90px 1fr 2fr auto;
  align-items: center;
  gap: 25px;
}
.custom-card h3 {
  margin: 0;
}
.custom-card .card-top {
  display: block;
}
.custom-card .card-top > * {
  display: block;
}
.info {
  padding-top: 110px;
  padding-bottom: 110px;
}
.info-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  margin-bottom: 60px;
}
.info h2 {
  font-size: 53px;
  max-width: 530px;
}
.steps {
  margin-left: calc(28% + 25px);
}
.steps article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.steps article:last-child {
  border-bottom: 1px solid var(--line);
}
.steps span {
  width: 27px;
  height: 27px;
  border: 1px solid #b9bbc0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
}
.steps h3 {
  font-size: 15px;
  margin: 3px 0 7px;
}
.steps p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 540px;
}
.tos {
  margin-left: calc(28% + 25px);
  border-bottom: 1px solid var(--line);
}
.tos summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.tos summary::-webkit-details-marker {
  display: none;
}
.tos div {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 670px;
  padding-bottom: 20px;
}
.contact {
  background: #1a1c20;
  color: #fff;
}
.contact-inner {
  padding-top: 95px;
  padding-bottom: 95px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.contact h2 {
  font-size: 55px;
}
.contact > div > div > p:last-child {
  font-size: 13px;
  line-height: 1.7;
  color: #aeb1b8;
  max-width: 330px;
  margin-top: 20px;
}
.contact form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #aeb1b8;
}
.contact input,
.contact select,
.contact textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #565960;
  border-radius: 0;
  color: #fff;
  padding: 11px 0;
  outline: none;
}
.contact select option {
  color: #111;
}
.contact textarea {
  height: 85px;
  resize: vertical;
}
.contact form .button {
  justify-self: start;
  background: #fff;
  color: #111;
  margin-top: 4px;
}
.form-note {
  font-size: 12px;
  color: #90d09e;
  margin: 0;
}
footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer p,
footer > a:last-child {
  font-size: 11px;
  color: var(--muted);
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 14, 0.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 45px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 6px;
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}
@media (max-width: 820px) {
  .wrap {
    width: min(100% - 32px, 1120px);
  }
  header {
    padding: 0 16px;
  }
  .menu {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 11px;
  }
  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-card {
    max-width: 560px;
  }
  .work {
    padding-top: 80px;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 18px;
  }
  .art-grid {
    grid-template-columns: 1fr 1fr;
  }
  .art-card img {
    height: 210px;
  }
  .art-card.wide {
    grid-column: span 2;
  }
  .commissions {
    padding: 80px 0;
  }
  .commission-grid {
    grid-template-columns: 1fr 1fr;
  }
  .commission-grid .custom-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .commission-grid .custom-card h3 {
    margin-top: 8px;
  }
  .info-intro {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .steps,
  .tos {
    margin-left: 0;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  footer {
    padding: 30px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

/* ==========================================================
   EXTRA SCRAPBOOK DETAILS
   Tape, stickers, marker lines, doodles, and tiny imperfections.
   ========================================================== */

::selection {
  color: #322743;
  background: #ffd86a;
}

* {
  scrollbar-color: #b8a5ef #fff4df;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 11px;
}

*::-webkit-scrollbar-track {
  background: #fff4df;
}

*::-webkit-scrollbar-thumb {
  background: #b8a5ef;
  border: 3px solid #fff4df;
  border-radius: 999px;
}

.logo::after {
  content: "♡";
  display: inline-block;
  margin-left: 7px;
  color: var(--pink);
  font-size: 17px;
  transform: rotate(10deg);
}

nav a:not(.nav-cta) {
  position: relative;
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='5' viewBox='0 0 70 5'%3E%3Cpath d='M1 3C12 0 21 5 33 2s24 3 36 0' fill='none' stroke='%237457d6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  opacity: 0;
  transform: scaleX(0.4) rotate(-1deg);
  transition:
    opacity 0.2s ease,
    transform 0.25s ease;
}

nav a:not(.nav-cta):hover::after {
  opacity: 1;
  transform: scaleX(1) rotate(-1deg);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "my art page!";
  position: absolute;
  top: -34px;
  right: 16%;
  color: #d95f95;
  font:
    700 14px/1 "Comic Sans MS",
    "Trebuchet MS",
    sans-serif;
  transform: rotate(6deg);
}

.hero-copy::after {
  content: "↙";
  position: absolute;
  top: -23px;
  right: 9%;
  color: #d95f95;
  font:
    700 25px/1 "Comic Sans MS",
    sans-serif;
  transform: rotate(18deg);
}

.hero h1,
.section-head h2,
.info h2 {
  width: fit-content;
  background-image: linear-gradient(
    transparent 67%,
    rgba(255, 217, 106, 0.62) 67%,
    rgba(255, 217, 106, 0.62) 89%,
    transparent 89%
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-card::before {
  content: "featured!! ★";
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  padding: 8px 11px;
  color: #3d3155;
  background: #ffd96a;
  border: 2px solid #3d3155;
  border-radius: 50% 46% 52% 44%;
  box-shadow: 3px 3px 0 rgba(61, 49, 85, 0.24);
  font:
    800 11px/1 "Comic Sans MS",
    "Trebuchet MS",
    sans-serif;
  transform: rotate(-8deg);
}

.hero-card {
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -6px;
  right: 18%;
  width: 92px;
  height: 25px;
  background: rgba(255, 185, 211, 0.76);
  border-right: 1px dashed rgba(94, 70, 105, 0.25);
  border-left: 1px dashed rgba(94, 70, 105, 0.25);
  transform: rotate(3deg);
}

.availability,
.eyebrow,
.art-card small,
.card-top,
.contact label {
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
}

.hero-actions .plain-link::after {
  content: " →";
  color: #d95f95;
}

.work,
.info {
  overflow: hidden;
}

.work > .wrap,
.info > .wrap {
  position: relative;
  z-index: 1;
}

.work::before {
  content: "✦  draw  •  color  •  repeat  ✦";
  position: absolute;
  top: 42px;
  right: max(20px, calc((100vw - 1120px) / 2));
  color: rgba(116, 87, 214, 0.38);
  font:
    700 13px/1 "Comic Sans MS",
    sans-serif;
  letter-spacing: 3px;
  transform: rotate(2deg);
}

.info::before {
  content: "easy peasy ↓";
  position: absolute;
  top: 54px;
  right: 8%;
  color: rgba(217, 95, 149, 0.75);
  font:
    700 15px/1 "Comic Sans MS",
    sans-serif;
  transform: rotate(7deg);
}

.art-card {
  position: relative;
}

.art-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -4px;
  left: 50%;
  width: 74px;
  height: 20px;
  background: rgba(255, 222, 124, 0.75);
  border-right: 1px dashed rgba(93, 70, 68, 0.2);
  border-left: 1px dashed rgba(93, 70, 68, 0.2);
  transform: translateX(-50%) rotate(-2deg);
}

.art-card:nth-child(even)::before {
  background: rgba(172, 229, 207, 0.78);
  transform: translateX(-50%) rotate(2deg);
}

.art-card:nth-child(3n)::before {
  background: rgba(255, 177, 208, 0.75);
}

.art-card > span::after {
  content: "♡";
  color: #df6a9e;
  font-size: 18px;
  line-height: 1;
  margin-left: 8px;
}

.art-card > span {
  position: relative;
}

.art-card small {
  background: #eee8ff;
  border-radius: 999px;
  padding: 3px 7px;
}

.commissions .section-head::after {
  content: "pick ur fave!";
  flex: none;
  align-self: flex-start;
  color: #d95f95;
  font:
    700 14px/1 "Comic Sans MS",
    sans-serif;
  white-space: nowrap;
  transform: rotate(5deg);
}

.commission-grid article {
  position: relative;
  overflow: visible;
}

.commission-grid article::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 22px;
  width: 54px;
  height: 20px;
  background: rgba(255, 190, 216, 0.78);
  border-right: 1px dashed rgba(93, 70, 68, 0.22);
  border-left: 1px dashed rgba(93, 70, 68, 0.22);
  transform: rotate(-4deg);
}

.commission-grid article:nth-child(2)::before {
  right: 24px;
  left: auto;
  background: rgba(255, 222, 124, 0.82);
  transform: rotate(4deg);
}

.commission-grid article:nth-child(3)::before {
  background: rgba(172, 229, 207, 0.82);
}

.commission-grid .custom-card::after {
  content: "made just 4 u ♡";
  position: absolute;
  right: 20px;
  bottom: 12px;
  color: #d95f95;
  font:
    700 13px/1 "Comic Sans MS",
    sans-serif;
  white-space: nowrap;
  transform: rotate(-3deg);
}

.steps h3::after {
  content: " !";
  color: var(--pink);
  font-family: "Comic Sans MS", sans-serif;
}

.tos summary::after {
  content: "+";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50% 43% 48% 45%;
  box-shadow: 2px 2px 0 #4f3aa2;
  font:
    800 18px/1 "Comic Sans MS",
    sans-serif;
  transition: transform 0.25s ease;
}

.tos[open] summary::after {
  transform: rotate(45deg);
}

.contact-inner::before {
  content: "let's make something cool :)";
  position: absolute;
  top: 53px;
  left: 1%;
  color: #ffd96a;
  font:
    700 14px/1 "Comic Sans MS",
    sans-serif;
  transform: rotate(-3deg);
}

.contact input,
.contact select,
.contact textarea {
  border-radius: 7px 7px 0 0;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  background: rgba(255, 255, 255, 0.045);
}

.form-note {
  width: fit-content;
  padding: 6px 9px;
  color: #2f5947;
  background: #a9e6cb;
  border-radius: 7px 10px 6px 9px;
  font-family: "Comic Sans MS", sans-serif;
  transform: rotate(-1deg);
}

footer::before {
  content: "made with way too many snacks + music ♫";
  color: #9b5c80;
  font:
    700 12px/1.4 "Comic Sans MS",
    sans-serif;
  transform: rotate(-1deg);
}

@media (prefers-reduced-motion: no-preference) {
  .logo::after {
    animation: heart-pop 2.4s ease-in-out infinite;
  }

  .hero-card::before {
    animation: sticker-float 3s ease-in-out infinite;
  }

  .button:hover,
  .nav-cta:hover {
    animation: button-wiggle 0.32s ease;
  }
}

@keyframes heart-pop {
  0%,
  100% {
    transform: rotate(10deg) scale(1);
  }
  50% {
    transform: rotate(4deg) scale(1.18);
  }
}

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

@keyframes button-wiggle {
  0%,
  100% {
    rotate: 0deg;
  }
  40% {
    rotate: -1.5deg;
  }
  75% {
    rotate: 1.5deg;
  }
}

@media (max-width: 820px) {
  .hero-copy::before,
  .hero-copy::after,
  .work::before,
  .info::before,
  .commissions .section-head::after,
  .contact-inner::before {
    display: none;
  }

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

  .commission-grid .custom-card::after {
    position: static;
    margin-top: 6px;
  }
}

@media (max-width: 540px) {
  .hero-card::before {
    font-size: 10px;
  }

  footer::before {
    max-width: 220px;
  }
}
@media (max-width: 540px) {
  .hero-card img {
    height: 250px;
  }
  .art-grid,
  .commission-grid {
    grid-template-columns: 1fr;
  }
  .art-card.wide {
    grid-column: auto;
  }
  .art-card img {
    height: 270px;
  }
  .commission-grid article {
    min-height: 300px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer p {
    margin: 0;
  }
}

/* ---------- Background and animation enhancements ---------- */

:root {
  --paper: #eeede8;
  --paper-deep: #e4e9ef;
  --wash-blue: rgba(89, 122, 163, 0.18);
  --wash-slate: rgba(42, 52, 66, 0.07);
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image:
    radial-gradient(
      ellipse 48% 30% at 88% 8%,
      var(--wash-blue),
      transparent 72%
    ),
    radial-gradient(
      ellipse 34% 25% at 8% 28%,
      rgba(255, 255, 255, 0.78),
      transparent 75%
    ),
    linear-gradient(
      115deg,
      transparent 0 48%,
      rgba(49, 90, 146, 0.025) 48% 49%,
      transparent 49% 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

/* A quiet editorial line that drifts down the page. */
body::before {
  content: "";
  position: fixed;
  inset: 72px auto 0 calc(50% - 560px);
  width: 1px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(49, 90, 146, 0.14) 18%,
    transparent 82%
  );
}

header {
  background: rgba(238, 237, 232, 0.84);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.hero::before {
  width: 390px;
  height: 390px;
  right: -125px;
  top: 30px;
  border: 1px solid rgba(49, 90, 146, 0.12);
  box-shadow:
    0 0 0 38px rgba(49, 90, 146, 0.025),
    0 0 0 86px rgba(49, 90, 146, 0.018);
}

.hero::after {
  width: 210px;
  height: 34px;
  left: -70px;
  bottom: 68px;
  background: rgba(49, 90, 146, 0.08);
  transform: rotate(-7deg);
  filter: blur(14px);
}

.availability span {
  box-shadow: 0 0 0 0 rgba(85, 166, 108, 0.4);
}

.hero-card,
.art-card,
.commission-grid article {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 32px rgba(27, 35, 48, 0.07);
}

.hero-card {
  transition:
    transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 24px 55px rgba(28, 38, 53, 0.16);
}

.art-card {
  transition:
    transform 0.3s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.art-card:hover {
  transform: translateY(-6px) rotate(-0.25deg);
  border-color: rgba(49, 90, 146, 0.28);
  box-shadow: 0 18px 38px rgba(20, 28, 40, 0.11);
}

.art-card img,
.hero-card img {
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.4s ease;
}

.art-card:hover img,
.hero-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.work,
.info {
  position: relative;
  isolation: isolate;
  background: rgba(245, 245, 243, 0.38);
}

.work::after,
.info::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: min(520px, 52vw);
  height: 230px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(49, 90, 146, 0.055);
  filter: blur(70px);
}

.work::after {
  right: -180px;
  top: 20%;
}

.info::after {
  left: -180px;
  bottom: 8%;
}

.commissions {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 42%),
    repeating-linear-gradient(
      90deg,
      transparent 0 79px,
      rgba(49, 90, 146, 0.035) 80px
    ),
    var(--paper-deep);
}

.commissions::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -230px;
  top: -240px;
  border: 1px solid rgba(49, 90, 146, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(49, 90, 146, 0.025);
}

.commission-grid article {
  border: 1px solid rgba(217, 218, 221, 0.75);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.commission-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(34, 47, 64, 0.11);
}

.button,
.nav-cta {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.button::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18),
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 24, 31, 0.16);
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%);
}

.plain-link,
.commission-grid a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.25s ease;
}

.plain-link:hover,
.commission-grid a:hover {
  background-size: 100% 1px;
}

.steps article {
  transition:
    padding-left 0.25s ease,
    background-color 0.25s ease;
}

.steps article:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(49, 90, 146, 0.045), transparent 70%);
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(91, 124, 167, 0.17),
      transparent 35%
    ),
    linear-gradient(145deg, #1a1c20, #171a20 58%, #1d2430);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

.contact-inner {
  position: relative;
}

.contact input,
.contact select,
.contact textarea {
  transition:
    border-color 0.25s ease,
    padding-left 0.25s ease;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: #a9bdd8;
  padding-left: 6px;
}

@media (prefers-reduced-motion: no-preference) {
  .availability span {
    animation: availability-pulse 2.6s ease-out infinite;
  }

  .hero-copy > * {
    opacity: 0;
    transform: translateY(16px);
    animation: fade-rise 0.75s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
  }

  .hero-copy > :nth-child(1) {
    animation-delay: 0.05s;
  }
  .hero-copy > :nth-child(2) {
    animation-delay: 0.13s;
  }
  .hero-copy > :nth-child(3) {
    animation-delay: 0.21s;
  }
  .hero-copy > :nth-child(4) {
    animation-delay: 0.29s;
  }

  .hero-card {
    opacity: 0;
    animation: card-arrive 0.9s 0.2s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
  }

  .hero::before {
    animation: slow-drift 9s ease-in-out infinite alternate;
  }
}

@keyframes fade-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-arrive {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1.5deg);
  }
}

@keyframes slow-drift {
  to {
    transform: translate3d(-18px, 14px, 0) scale(1.025);
  }
}

@keyframes availability-pulse {
  65%,
  100% {
    box-shadow: 0 0 0 8px rgba(85, 166, 108, 0);
  }
}

@media (max-width: 820px) {
  body::before {
    display: none;
  }

  header {
    background: rgba(238, 237, 232, 0.95);
  }

  .hero::before {
    right: -245px;
  }
}

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

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

/* ==========================================================
   PLAYFUL TEEN ART-PAGE THEME
   Intentionally a little handmade, colorful, and imperfect.
   ========================================================== */

:root {
  --ink: #2f2940;
  --muted: #6f687b;
  --paper: #fff8ec;
  --paper-deep: #f4eaff;
  --white: #fffdf8;
  --blue: #e8e1ff;
  --accent: #7457d6;
  --line: #d8cfea;
  --pink: #ff9fc7;
  --yellow: #ffd96a;
  --mint: #a9e6cb;
  --purple: #8d72e6;
}

body {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(116, 87, 214, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 87, 214, 0.055) 1px, transparent 1px),
    radial-gradient(
      circle at 12% 12%,
      rgba(255, 159, 199, 0.2),
      transparent 19%
    ),
    radial-gradient(
      circle at 88% 32%,
      rgba(169, 230, 203, 0.22),
      transparent 23%
    ),
    radial-gradient(
      circle at 28% 85%,
      rgba(255, 217, 106, 0.18),
      transparent 18%
    );
  background-size:
    24px 24px,
    24px 24px,
    auto,
    auto,
    auto;
  background-attachment: fixed;
}

body::before {
  display: none;
}

header {
  background: rgba(255, 248, 236, 0.9);
  border-bottom: 2px dashed rgba(116, 87, 214, 0.28);
  box-shadow: 0 4px 0 rgba(255, 159, 199, 0.1);
}

.logo {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.09em;
  transform: rotate(-1deg);
}

nav a {
  color: #544b65;
  font-weight: 700;
}

nav a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-cta,
.button {
  background: var(--purple);
  color: #fff !important;
  border: 2px solid #4f3aa2;
  border-radius: 14px 11px 15px 10px;
  box-shadow: 0 5px 0 #4f3aa2;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nav-cta:hover,
.button:hover {
  background: #9b82eb;
  box-shadow: 0 2px 0 #4f3aa2;
  transform: translateY(3px) rotate(-1deg);
}

.nav-cta::after,
.button::after {
  display: none;
}

.hero {
  min-height: 600px;
}

.hero::before {
  width: 160px;
  height: 160px;
  right: -20px;
  top: 70px;
  border: 3px dashed rgba(116, 87, 214, 0.32);
  box-shadow: none;
  background: rgba(255, 217, 106, 0.2);
}

.hero::after {
  content: "★  ✦  :)";
  width: auto;
  height: auto;
  left: auto;
  right: 24%;
  bottom: 34px;
  color: var(--pink);
  background: transparent;
  filter: none;
  font:
    800 20px/1 "Trebuchet MS",
    sans-serif;
  letter-spacing: 9px;
  transform: rotate(-7deg);
}

.availability {
  color: #655878;
  background: rgba(169, 230, 203, 0.42);
  border: 1px dashed #6fc09d;
  border-radius: 999px;
  padding: 7px 12px;
  width: fit-content;
  transform: rotate(-1deg);
}

.hero h1,
.section-head h2,
.info h2,
.contact h2 {
  font-family: "Trebuchet MS", "DM Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1 {
  color: #352b4e;
  text-shadow: 3px 3px 0 rgba(255, 159, 199, 0.35);
}

.hero-copy > p {
  color: #665c72;
  font-size: 17px;
}

.plain-link {
  color: var(--accent);
  font-weight: 800;
}

.hero-card {
  background: #fffdf8;
  border: 3px solid #352b4e;
  border-radius: 22px 15px 25px 13px;
  box-shadow: 10px 11px 0 rgba(141, 114, 230, 0.25);
  transform: rotate(2.5deg);
}

.hero-card:hover {
  transform: rotate(-1deg) translateY(-6px);
  box-shadow: 13px 15px 0 rgba(255, 159, 199, 0.28);
}

.hero-card span {
  color: #5e536e;
  font-weight: 700;
  background: #fff8d9;
  border-top: 2px dashed rgba(53, 43, 78, 0.18);
}

.work,
.info {
  background: rgba(255, 253, 248, 0.5);
}

.work::after,
.info::after {
  opacity: 0.7;
  background: rgba(255, 159, 199, 0.16);
}

.eyebrow {
  display: inline-block;
  color: #5f45bd;
  background: var(--yellow);
  padding: 6px 10px;
  border-radius: 7px 10px 6px 9px;
  transform: rotate(-1.5deg);
}

.section-head h2,
.info h2 {
  color: #392e52;
}

.art-grid {
  gap: 22px;
}

.art-card {
  border: 2px solid #645379;
  border-radius: 17px 11px 20px 13px;
  box-shadow: 7px 8px 0 rgba(116, 87, 214, 0.15);
}

.art-card:nth-child(even) {
  transform: rotate(0.7deg);
}

.art-card:nth-child(odd) {
  transform: rotate(-0.7deg);
}

.art-card:hover {
  transform: translateY(-7px) rotate(1.2deg);
  border-color: var(--accent);
  box-shadow: 9px 12px 0 rgba(255, 159, 199, 0.22);
}

.art-card > span {
  background: #fffdf8;
  border-top: 2px dashed rgba(100, 83, 121, 0.18);
}

.art-card b {
  color: #3d3155;
  font-size: 14px;
}

.commissions {
  background:
    radial-gradient(
      circle at 10px 10px,
      rgba(116, 87, 214, 0.1) 2px,
      transparent 2px
    ),
    #eee8ff;
  background-size: 28px 28px;
  border-top: 3px dashed rgba(116, 87, 214, 0.28);
  border-bottom: 3px dashed rgba(116, 87, 214, 0.28);
}

.commissions::before {
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border: 4px dashed rgba(255, 159, 199, 0.38);
  box-shadow: none;
}

.commission-grid article {
  border: 2px solid #6a5880;
  border-radius: 18px 13px 21px 12px;
  box-shadow: 7px 8px 0 rgba(75, 57, 111, 0.14);
}

.commission-grid article:nth-child(1) {
  background: #fff8dc;
  transform: rotate(-0.5deg);
}

.commission-grid article:nth-child(2) {
  background: #fff0f6;
  transform: rotate(0.6deg);
}

.commission-grid article:nth-child(3) {
  background: #eafff5;
  transform: rotate(-0.35deg);
}

.commission-grid article:hover {
  transform: translateY(-7px) rotate(0.7deg);
  box-shadow: 10px 12px 0 rgba(255, 159, 199, 0.22);
}

.commission-grid h3 {
  color: #3d3155;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 800;
}

.commission-grid a {
  color: #6046be;
}

.steps article {
  border-top: 2px dashed rgba(100, 83, 121, 0.24);
}

.steps article:last-child {
  border-bottom: 2px dashed rgba(100, 83, 121, 0.24);
}

.steps span {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: #fff;
  font-weight: 800;
  transform: rotate(-5deg);
}

.steps article:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 217, 106, 0.22),
    transparent 75%
  );
}

.tos {
  border-bottom: 2px dashed rgba(100, 83, 121, 0.24);
}

.contact {
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(255, 159, 199, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 16% 80%,
      rgba(169, 230, 203, 0.16),
      transparent 28%
    ),
    #332b45;
  border-top: 5px solid var(--pink);
}

.contact::before {
  opacity: 0.08;
}

.contact h2 {
  color: #fff;
  text-shadow: 3px 3px 0 rgba(255, 159, 199, 0.45);
}

.contact input,
.contact select,
.contact textarea {
  border-bottom: 2px dashed #8f82a2;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: var(--pink);
}

.contact form .button {
  background: var(--yellow);
  border-color: #b98c1e;
  color: #3c304d !important;
  box-shadow: 0 5px 0 #b98c1e;
}

footer {
  color: #5f566b;
}

@media (prefers-reduced-motion: no-preference) {
  .hero::after {
    animation: doodle-bob 3s ease-in-out infinite;
  }

  .hero-card {
    animation-name: teen-card-arrive;
  }

  .art-card:hover,
  .commission-grid article:hover {
    animation: tiny-wiggle 0.35s ease;
  }
}

@keyframes teen-card-arrive {
  from {
    opacity: 0;
    transform: translateY(28px) rotate(6deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(2.5deg);
  }
}

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

@keyframes tiny-wiggle {
  0%,
  100% {
    rotate: 0deg;
  }
  35% {
    rotate: -0.8deg;
  }
  70% {
    rotate: 0.8deg;
  }
}

@media (max-width: 820px) {
  header {
    background: rgba(255, 248, 236, 0.96);
  }

  nav {
    background: #fff8ec;
  }

  .hero::after {
    right: 8%;
    bottom: 15px;
  }
}