:root {
  --bg: #efefef;
  --pink: #ee5ca0;
  --pink-dark: #d84d8f;
  --lilac: #dcb8f2;
  --blue: #b9c9ef;
  --blue-deep: #86a2da;
  --olive: #6c8d21;
  --olive-dark: #4c6314;
  --yellow: #e7e37b;
  --text: #2a2a2a;
  --white: #ffffff;
  --stroke: #2f2f2f;
  --hero-cloud-image: url("images/hero-background.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  background: var(--white);
}


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

a {
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

/* TOP BAR */

.topbar {
  background: var(--pink);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  overflow: visible;
}

.nav-left {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  transform: translateY(-6px);
}

.nav-left a,
.footer-links a {
  color: #f5f08b;
  text-transform: uppercase;
  font-family: "contempora-sans-condensed", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 28pt;
  letter-spacing: 1.4px;
  text-shadow: 1px 1px 0 #2d2d2d;
  display: flex;
  justify-content: center;
}

/* Keep footer links at their original size while tightening the nav controls. */
.nav-left a {
  font-size: 20pt;
}

.nav-center {
  display: flex;
  justify-content: center;
  position: relative;
}

.avatar-circle {
  width: 130px;
  height: 130px;
  background: #f7a5c9;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 0;
  transform: translateY(34px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
  color: #444;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.nav-right,
.footer-brand {
  justify-self: end;
  display: flex;
  align-items: baseline;
  padding-right: 20px;
  flex-wrap: wrap;
  width: 400px;
  height: auto;
}

.nav-right {
  transform: translateY(-6px);
}



/* HERO */

.hero {
  background: var(--white);
  padding-top: 56px;
  padding-bottom: 32px;
}

.hero-inner {
  text-align: center;
  position: relative;
}

.hero-title-image {
  width: min(620px, 78vw);
  margin: 0 0 12px;
  transform: translateX(120px);
  position: relative;
  z-index: 2;
}

.hero-cloud {
  width: 900px;
  max-width: 100%;
  aspect-ratio: 1074 / 402;
  margin: -100px auto 0;
  background-image: url("images/purple-home-blob.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 42px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-cloud::before,
.hero-cloud::after {
  content: none;
}

.hero-cloud h2 {
  margin: 0 0 8px;
  text-transform: uppercase;
  color: #f7ebff;
  font-family: eight, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.18);
  max-width: 80%;
}

.hero-cloud p {
  margin: 0;
  color: #f7ebff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20pt;
   font-family: "contempora-sans-condensed", sans-serif;
  letter-spacing: 1px;
  max-width: 78%;
}

/* PAGE BREAK */

.page-break-image {
  width: 100%;
  min-height: 160px;
  background-color: var(--white);
  background-image: url("images/green-checkered.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* INTRO */

.intro-band {
  background: linear-gradient(90deg, #ef5ea0 0%, #d6c8f1 32%, #d7edc2 68%, #6e8f22 100%);
  position: relative;
}

.intro-wrap {
  position: relative;
  min-height: 420px;
}

.intro-card {
  width: min(760px, 100%);
  margin: 30px auto;
  background: rgba(255,255,255,0.45);
  border-radius: 70px;
  padding: 48px 42px;
  text-align: center;
  backdrop-filter: blur(1px);
}

.intro-card p {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.65;
  color: #f45b9d;
  font-family: "contempora-sans-condensed", sans-serif;
font-weight: 400;
font-style: normal;
}

.flower-home-1 {
  position: absolute;
  width: var(--flower-home-1-width, 260px);
  right: var(--flower-home-1-right, 40px);
  bottom: var(--flower-home-1-bottom, -170px);
  z-index: 1;
}

/* HEADINGS */

.script-heading {
  margin: 0 0 24px;
  font-family: deseo-medium, sans-serif;
  font-weight: 400;
  line-height: 1;
}

.script-heading.blue {
  color: var(--blue-deep);
  font-size: clamp(5rem, 9vw, 11.667rem);
  text-shadow: 1px 1px 0 #404040, 2px 2px 0 #ffffff;
}

.script-heading.pink {
  color: var(--pink);
font-size: 80pt;
  -webkit-text-stroke: 0.75pt #000000;
  text-shadow: none;
}



/* PROJECTS */

.work {
  padding-top: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 12px;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 10px;
}

.project-card {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 2px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
}

.project-thumb {
  height: 180px;
  background: #ddd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 2px solid var(--stroke);
}

.home-thumb-dtg {
  background-color: var(--white);
  background-image: url("images/dtg-design-preview.png");
  background-size: auto 125%;
  background-position: center 22%;
}

.home-thumb-taga { background-image: url("images/taga.png"); }
.home-thumb-magazine { background-image: url("images/magazine-mockup2.png"); }

.home-thumb-screenprint {
  background-color: var(--white);
  background-image: url("images/sunglasses-preview.png");
  background-size: contain;
}

.home-thumb-package { background-image: url("images/p-packageandglass/IMG_0604.JPG"); }

.project-body {
  flex: 1;
  padding: 12px 12px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.project-body h3 {
  margin: 0 0 2px;
  font-size: 1.5rem;
  font-family: "contempora-sans-condensed", sans-serif;
  font-weight: 400;
  line-height: 1.05;
  min-height: 3.15em;
}

.project-body p {
  margin: 0 0 14px;
  font-size: 0.83rem;
  line-height: 1.5;
}

.project-body .pill-button {
  align-self: center;
  margin-top: auto;
}

.card-blue .project-body { background: #a8bee6; }
.card-pink .project-body { background: #ef5ea0; }
.card-lilac .project-body { background: #d9b6ed; }
.card-yellow .project-body { background: #e3df76; }
.card-green .project-body { background: #6d8d22;}

.center {
  text-align: center;
  margin-top: 28px;
}

.pill-button {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
   font-family: "contempora-sans-condensed", sans-serif;
   font-weight: 400;
  border: 2px solid var(--stroke);
}

.pill-button.light {
  background: white;
  color: inherit;
}

.pill-button.olive {
  background: var(--olive);
  color: white;
  font-size: 1.1rem;
   font-family: "contempora-sans-condensed", sans-serif;
   font-weight: 400;
}

.pill-button.big {
  min-width: 240px;
}

/* ABOUT */

.about-band {
  background-image: url("images/bluegradient.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  aspect-ratio: 1469 / 856;
  padding-top: 0;
  padding-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 100%;
}

.portrait-placeholder {
  width: min(400px, 100%);
  aspect-ratio: 1 / 1;
  justify-self: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #efefef 55%, #d9d9d9 100%);
  display: grid;
  place-items: center;
  color: #666;
  font-weight: 800;
  font-size: 1.4rem;
}

.about-copy {
  justify-self: start;
  width: min(520px, 100%);
}

.about-copy p {
  margin: 0 0 14px;
  color: white;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 20pt;
  line-height: 1.2;
  font-weight: 300;
  text-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

.pink-btn {
  background: var(--pink);
  color: #f8ef69;
  font-family: "contempora-sans-condensed", sans-serif;
   font-weight: 300;
}

/* CONTACT */

.contact-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.contact-copy {
  transform: translateX(260px);
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.outline-text {
  font-size: clamp(4.6rem, 7.8vw, 7.2rem);
  line-height: 0.95;
   font-family: "contempora-sans-condensed", sans-serif;
   font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 2px #2f2f2f;
}

.contact-script {
  margin-top: -8px;
  font-size: 170pt;
  transform: translateX(25px);
}

.arrow-line {
  width: 50%;
  height: 3px;
  background: #2f2f2f;
  margin-top: 22px;
  margin-left: 20px;
  position: relative;
}

.arrow-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -7px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 22px solid #2f2f2f;
}

.contact-image-link {
  justify-self: center;
  display: inline-block;
  transform-origin: center bottom;
}

.contact-image-link:hover,
.contact-image-link:focus-visible {
  animation: phone-ring 0.5s ease-in-out 1;
}

.contact-image-placeholder {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
}

.contact-image-band {
  width: 100%;
  height: 900px;
  background-image: url("images/contact-background.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;
  overflow: hidden;
  position: relative;
}

.contact-band-buttons {
  position: absolute;
  top: 360px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: min(520px, calc(100% - 40px));
  z-index: 2;
}

.contact-band-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--olive);
  border: 2px solid rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.contact-band-button-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-band-button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-page-body .site-footer {
  margin-top: -100px;
}

/* PLAYGROUND PAGE */

.playground-page-body main {
  min-height: calc(100vh - 80px);
  padding: 100px 20px 280px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f8f8f6;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(238, 92, 160, 0.3) 0 11%, transparent 11.2%),
    radial-gradient(circle at 92% 14%, rgba(185, 201, 239, 0.75) 0 13%, transparent 13.2%),
    radial-gradient(circle at 88% 80%, rgba(231, 227, 123, 0.68) 0 12%, transparent 12.2%),
    radial-gradient(circle at 7% 83%, rgba(220, 184, 242, 0.65) 0 14%, transparent 14.2%);
}

.playground-page-body .site-footer {
  z-index: 2;
  margin-top: -200px;
}


.playground-intro {
  width: min(620px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.playground-kicker,
.playground-description {
  margin: 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.playground-kicker {
  color: var(--olive);
}

.playground-intro h1 {
  margin: -4px 0 2px;
  color: var(--pink);
  font-family: deseo-medium, sans-serif;
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 400;
  line-height: 0.9;
  -webkit-text-stroke: 1px var(--stroke);
}

.playground-description {
  max-width: 430px;
  margin: 14px auto 0;
  color: var(--text);
  font-size: 1.35rem;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-transform: none;
}

.playground-gallery {
  width: min(760px, 100%);
  margin: 0 auto;
  column-count: 2;
  column-gap: 20px;
  position: relative;
  z-index: 1;
}

.playground-piece {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  background: var(--white);
  break-inside: avoid;
  box-shadow: 0 0 0 1px rgba(47, 47, 47, 0.13);
  padding: 10px;
}

.playground-piece img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 180ms ease;
}

.playground-piece:hover img,
.playground-piece:focus-visible img {
  transform: scale(1.025);
}

.playground-piece:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.resume-page-body .site-footer {
  margin-top: -300px;
  z-index: 2;
}

/* PORTFOLIO PAGE */

.portfolio-page-body main {
  background: var(--white);
}

.portfolio-hero-image {
  width: 100%;
  min-height: 100vh;
  background-color: var(--white);
  background-image: url("images/portfolio-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-band-image {
  width: 100%;
  min-height: 100px;
  background-color: transparent;
  background-image: url("images/portfolio-divider-band.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-showcase {
  position: relative;
  background-color: var(--white);
  background-image: url("images/Asset 1.png");
  background-position: center calc(100% + 700px);
  background-repeat: no-repeat;
  background-size: 110% auto;
  overflow: hidden;
  padding: 56px 0 272px;
}

.portfolio-page-body .site-footer {
  z-index: 2;
  margin-top: -200px;
}

.portfolio-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 290px);
  gap: 14px 20px;
  justify-content: center;
  justify-items: center;
}

.portfolio-showcase-card {
  width: 290px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #2f2f2f;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.portfolio-showcase-thumb {
  height: 182px;
  background-color: #dedede;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-showcase-thumb-1 { background-image: url("images/taga.png"); }
.portfolio-showcase-thumb-2 {
  background-color: #ffffff;
  background-image: url("images/sunglasses-preview.png");
  background-size: contain;
}
.portfolio-showcase-thumb-3 { background-image: url("images/skydivers.png"); }
.portfolio-showcase-thumb-4 { background-image: url("images/magazine-mockup2.png"); }
.portfolio-showcase-thumb-5 {
  background-color: #ffffff;
  background-image: url("images/mug-1.png");
  background-size: auto 110%;
}
.portfolio-showcase-thumb-6 { background-image: url("images/p-packageandglass/IMG_0604.JPG"); }
.portfolio-showcase-thumb-7 {
  background-color: #ffffff;
  background-image: url("images/dtg-design-preview.png");
  background-position: center 22%;
  background-size: auto 145%;
}
.portfolio-showcase-thumb-8 { background-image: url("images/infographic-prev.png"); }


.portfolio-showcase-body {
  flex: 1;
  min-height: 128px;
  margin-top: -1px;
  padding: 14px 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.portfolio-showcase-body h3 {
  margin: 0 0 8px;
  color: #000000;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.05;
}

.portfolio-showcase-body p {
  margin: 0 0 14px;
  color: #000000;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
}

.portfolio-showcase-body .pill-button {
  margin-top: auto;
  align-self: center;
}

.portfolio-showcase-card-blue .portfolio-showcase-body { background: #9db2df; }
.portfolio-showcase-card-pink .portfolio-showcase-body { background: #ef5ea0; }
.portfolio-showcase-card-lilac .portfolio-showcase-body { background: #d6b0ee; }
.portfolio-showcase-card-purple .portfolio-showcase-body { background: #9c71d2; }
.portfolio-showcase-card-yellow .portfolio-showcase-body { background: #eee97b; }
.portfolio-showcase-card-green .portfolio-showcase-body { background: #6e8f22; }

.portfolio-showcase-flower {
  position: absolute;
  height: auto;
  object-fit: contain;
  display: block;
}

.portfolio-showcase-flower-left {
  left: -36px;
  top: 28px;
  width: min(180px, 24vw);
}

.portfolio-showcase-flower-right {
  right: -18px;
  top: 290px;
  width: min(190px, 25vw);
}

.portfolio-showcase-flower-bottom-left {
  left: -18px;
  bottom: 84px;
  width: min(150px, 20vw);
}

.portfolio-showcase-flower-bottom-right {
  right: -12px;
  bottom: -10px;
  width: min(190px, 24vw);
}

/* MAGAZINE RECREATION PROJECT */

.magazine-back-button {
  position: absolute;
  top: calc(100% + 12px);
  left: 20px;
  z-index: 3;
  padding: 11px 18px;
  border: 1.5px solid var(--stroke);
  border-radius: 999px;
  color: #1f1722;
  background: var(--white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 #1f1722;
}

.magazine-back-button:hover,
.magazine-back-button:focus-visible {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 #1f1722;
}

.magazine-hero {
  overflow: hidden;
  padding: 108px 0 88px;
  color: #1f1722;
  background: #d6b0ee;
}

.magazine-hero-inner {
  position: relative;
  text-align: center;
}

.magazine-eyebrow,
.magazine-section-label {
  margin: 0 0 12px;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.magazine-hero h1,
.magazine-cover-copy h2,
.magazine-spread-heading h2,
.magazine-details-section h2 {
  margin: 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.magazine-hero h1 {
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 420;
  letter-spacing: -0.01em;
}

.magazine-hero-copy {
  width: min(100%, 500px);
  margin: 28px auto 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.45;
}

.magazine-cover-section {
  padding: 88px 0;
  background: var(--yellow);
}

.magazine-cover-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 8vw, 110px);
}

.magazine-cover-copy h2,
.magazine-spread-heading h2,
.magazine-details-section h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.magazine-cover-copy > p:not(.magazine-section-label),
.magazine-spread-heading > p:not(.magazine-section-label),
.magazine-details-copy > p {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
}

.magazine-cover-display {
  position: relative;
  width: min(100%, 390px);
  justify-self: center;
  padding: 26px;
  background: var(--white);
  border: 2px solid var(--stroke);
  box-shadow: 12px 12px 0 #ef5ea0;
  transform: rotate(2deg);
}

.magazine-cover-display img {
  width: 100%;
}

.magazine-note {
  position: absolute;
  z-index: 1;
  right: -28px;
  top: -19px;
  padding: 10px 15px;
  color: var(--white);
  background: #2f2f2f;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.magazine-spread-section {
  padding: 90px 0 100px;
  background: #f7f4ef;
}

.magazine-spread-heading {
  width: min(100%, 700px);
  margin: 0 auto 45px;
  text-align: center;
}

.magazine-spread-display {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(14px, 3vw, 30px);
  background: var(--white);
  border: 2px solid var(--stroke);
  box-shadow: 14px 14px 0 #9db2df;
}

.magazine-spread-display img {
  width: 100%;
}

.magazine-spread-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
}

.magazine-spread-display figcaption {
  padding: 15px 4px 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.magazine-details-section {
  padding: 90px 0 290px;
  color: #1f1722;
  background: #ef5ea0;
}

.magazine-page-body .site-footer {
  z-index: 2;
  margin-top: -200px;
}

.magazine-details-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(35px, 8vw, 120px);
}

.magazine-details-copy > p {
  margin-top: 0;
}

.magazine-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 35px 0 0;
}

.magazine-meta div {
  padding-top: 12px;
  border-top: 2px solid #1f1722;
}

.magazine-meta dt,
.magazine-meta dd {
  margin: 0;
}

.magazine-meta dt {
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.magazine-meta dd {
  margin-top: 4px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 400;
  line-height: 1.25;
}

/* INFOGRAPHIC PROJECT */

.infographic-hero {
  padding: 108px 0 88px;
  color: #1f1722;
  background: linear-gradient(115deg, #b9c9ef 0%, #dcb8f2 52%, #ef5ea0 100%);
}

.infographic-hero-inner {
  text-align: center;
}

.infographic-eyebrow {
  margin: 0 0 12px;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.infographic-hero h1,
.infographic-details h2 {
  margin: 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.infographic-hero h1 {
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 420;
}

.infographic-hero-inner > p:last-child {
  width: min(100%, 470px);
  margin: 26px auto 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
}

.infographic-showcase {
  position: relative;
  overflow: hidden;
  padding: 92px 20px 110px;
  background: #f7f4ef;
}

.infographic-display {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  margin: 0 auto;
  padding: clamp(14px, 3vw, 28px);
  background: var(--white);
  border: 2px solid var(--stroke);
  box-shadow: 16px 16px 0 var(--olive);
  transform: rotate(1.25deg);
}

.infographic-display img {
  width: 100%;
}

.infographic-display figcaption {
  padding: 14px 2px 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.infographic-doodle {
  position: absolute;
  z-index: 0;
  color: var(--pink);
  font-family: Arial, sans-serif;
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 1;
}

.infographic-doodle-left {
  top: 10%;
  left: max(3vw, calc(50% - 500px));
  transform: rotate(-15deg);
}

.infographic-doodle-right {
  right: max(4vw, calc(50% - 520px));
  bottom: 8%;
  color: var(--blue-deep);
}

.infographic-details {
  padding: 90px 0 290px;
  color: #1f1722;
  background: var(--yellow);
}

.infographic-page-body .site-footer {
  z-index: 2;
  margin-top: -200px;
}

.infographic-details-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(35px, 8vw, 120px);
}

.infographic-details h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.infographic-details-copy > p {
  margin-top: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.infographic-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 35px 0 0;
}

.infographic-meta div {
  padding-top: 12px;
  border-top: 2px solid #1f1722;
}

.infographic-meta dt,
.infographic-meta dd {
  margin: 0;
}

.infographic-meta dt {
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.infographic-meta dd {
  margin-top: 4px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  line-height: 1.25;
}

/* PACKAGE AND GLASS PROJECT */

.package-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 88px;
  color: var(--white);
  background: var(--pink);
}

.package-hero > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 70vw);
  transform: translate(-50%, -50%) rotate(-9deg);
  opacity: 0.2;
}

.package-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.package-eyebrow {
  margin: 0 0 12px;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-hero h1,
.package-intro h2,
.package-section-heading h2,
.package-glass h2,
.package-process h2 {
  margin: 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.package-hero h1 {
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 420;
}

.package-hero-inner > p:last-child {
  width: min(100%, 500px);
  margin: 27px auto 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
}

.package-intro {
  padding: 90px 0;
  background: var(--yellow);
}

.package-intro-layout,
.package-glass-layout,
.package-process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
}

.package-intro h2,
.package-section-heading h2,
.package-glass h2,
.package-process h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.package-intro-copy > p:not(.package-eyebrow),
.package-glass-copy > p:not(.package-eyebrow),
.package-process-layout > div > p:not(.package-eyebrow) {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.package-stacked-photos {
  position: relative;
  min-height: 470px;
}

.package-stacked-photos > img,
.package-stacked-photos .package-photo-front {
  position: absolute;
  width: min(72%, 380px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 55%;
  padding: 10px;
  background: var(--white);
  border: 2px solid var(--stroke);
  box-shadow: 10px 10px 0 var(--pink);
}

.package-photo-back {
  top: 0;
  right: 0;
  transform: rotate(5deg);
}

.package-stacked-photos .package-photo-front {
  bottom: 0;
  left: 0;
  width: min(52%, 250px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 70%;
  transform: rotate(-4deg);
  overflow: hidden;
}

.package-photo-front img {
  width: 125%;
  max-width: none;
  height: 125%;
  object-fit: cover;
  object-position: center 55%;
  transform: translate(-10%, -10%);
}

.package-viewer-section {
  padding: 95px 0;
  color: var(--white);
  background: var(--olive);
}

.package-viewer-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(42px, 9vw, 130px);
}

.package-viewer-copy h2 {
  margin: 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.package-viewer-copy > p:not(.package-eyebrow) {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.package-viewer-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.package-viewer-controls button {
  min-height: 46px;
  padding: 8px 16px;
  color: #1f1722;
  background: var(--yellow);
  border: 2px solid #1f1722;
  border-radius: 0;
  box-shadow: 4px 4px 0 #2f2f2f;
  cursor: pointer;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.package-viewer-controls button:hover,
.package-viewer-controls button:focus-visible {
  box-shadow: 1px 1px 0 #2f2f2f;
  transform: translate(3px, 3px);
}

.package-scene {
  width: min(100%, 470px);
  height: 560px;
  justify-self: center;
  perspective: 950px;
}

.package-box {
  position: relative;
  width: 224px;
  height: 420px;
  margin: 60px auto 0;
  transform: rotateX(-8deg) rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.package-box-face,
.package-box-top {
  position: absolute;
  left: 50%;
  top: 50%;
  backface-visibility: hidden;
  border: 1px solid rgba(47, 47, 47, 0.65);
  background-color: var(--white);
  background-repeat: no-repeat;
}

.package-box-face {
  width: 224px;
  height: 420px;
  margin: -210px 0 0 -112px;
  background-position: center;
  background-size: cover;
}

.package-box-front {
  background-image: url("images/p-packageandglass/package-side_01.jpg");
  transform: translateZ(112px);
}

.package-box-right {
  background-image: url("images/p-packageandglass/package-side_02.jpg");
  transform: rotateY(90deg) translateZ(112px);
}

.package-box-back {
  background-image: url("images/p-packageandglass/package-side_03.jpg");
  transform: rotateY(180deg) translateZ(112px);
}

.package-box-left {
  background-image: url("images/p-packageandglass/package-side_04.jpg");
  transform: rotateY(-90deg) translateZ(112px);
}

.package-box-top {
  width: 234px;
  height: 234px;
  margin: -117px 0 0 -117px;
  background-color: var(--white);
  background-image: url("images/p-packageandglass/packagetop-fittoframe.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transform: rotateX(90deg) translateZ(210px);
}

.package-box-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/p-packageandglass/packagetop-fittoframe.png");
  background-position: center;
  background-size: cover;
  transform: rotate(-90deg);
}

.package-views {
  padding: 92px 0 105px;
  background: var(--blue-deep);
  color: var(--white);
}

.package-section-heading {
  width: min(100%, 660px);
  margin: 0 auto 48px;
  text-align: center;
}

.package-view-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(14px, 2vw, 28px);
}

.package-view-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 55%;
  padding: 10px;
  background: var(--white);
  border: 2px solid #2f2f2f;
}

.package-view-grid img:nth-child(1) { transform: rotate(-2.5deg); }
.package-view-grid img:nth-child(2) { transform: translateY(22px) rotate(2deg); }
.package-view-grid img:nth-child(3) { transform: rotate(-1deg); }

.package-glass {
  padding: 92px 0;
  background: var(--lilac);
}

.package-glass-photo {
  width: min(100%, 390px);
  justify-self: center;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--stroke);
  box-shadow: 12px 12px 0 var(--olive);
  transform: rotate(-2.5deg);
}

.package-glass-photo img { width: 100%; }

.package-art-link {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--olive);
  border: 2px solid #2f2f2f;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.package-process {
  padding: 95px 0 290px;
  color: var(--white);
  background: var(--pink);
}

.package-process-layout > img {
  width: min(100%, 390px);
  justify-self: center;
  border: 10px solid var(--white);
  box-shadow: 12px 12px 0 #2f2f2f;
  transform: rotate(2deg);
}

.package-page-body .site-footer {
  z-index: 2;
  margin-top: -200px;
}

/* T-SHIRT DTG PROJECT */

.dtg-hero {
  padding: 108px 0 88px;
  color: #1f1722;
  background: linear-gradient(125deg, #ef5ea0 0%, #dcb8f2 48%, #b9c9ef 100%);
}

.dtg-hero-inner,
.dtg-process-heading {
  text-align: center;
}

.dtg-eyebrow {
  margin: 0 0 12px;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dtg-hero h1,
.dtg-design-copy h2,
.dtg-mockup-layout h2,
.dtg-process-heading h2 {
  margin: 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.dtg-hero h1 {
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 420;
}

.dtg-hero-inner > p:last-child {
  width: min(100%, 480px);
  margin: 27px auto 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
}

.dtg-design-section {
  padding: 92px 0;
  background: #f7f4ef;
}

.dtg-design-layout,
.dtg-mockup-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
}

.dtg-design-copy h2,
.dtg-mockup-layout h2,
.dtg-process-heading h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.dtg-design-copy > p:not(.dtg-eyebrow),
.dtg-mockup-layout > div > p:not(.dtg-eyebrow) {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.dtg-file-link {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: #2f2f2f;
  border: 2px solid #2f2f2f;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dtg-design-display {
  width: min(100%, 460px);
  justify-self: center;
  margin: 0;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--stroke);
  box-shadow: 14px 14px 0 #ef5ea0;
  transform: rotate(2deg);
}

.dtg-design-display img { width: 100%; }

.dtg-design-display figcaption {
  padding: 13px 2px 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dtg-mockup-section {
  padding: 92px 0;
  background: var(--yellow);
}

.dtg-mockup-placeholder {
  width: min(100%, 420px);
  min-height: 390px;
  justify-self: center;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #86a2da;
  border: 2px solid var(--stroke);
  box-shadow: 12px 12px 0 #2f2f2f;
  transform: rotate(-2deg);
}

.dtg-mockup-placeholder span {
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
}

.dtg-mockup-display {
  width: min(100%, 420px);
  justify-self: center;
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: 2px solid var(--stroke);
  box-shadow: 12px 12px 0 #2f2f2f;
  transform: rotate(-2deg);
}

.dtg-mockup-display img {
  width: 100%;
}

.dtg-mockup-display figcaption {
  padding: 12px 2px 2px;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dtg-process-section {
  padding: 95px 0 290px;
  color: #1f1722;
  background: #b9c9ef;
}

.dtg-process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.dtg-process-list li {
  min-height: 190px;
  padding: 22px;
  background: #f7f4ef;
  border: 2px solid var(--stroke);
}

.dtg-process-list span {
  display: block;
  color: var(--pink);
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.dtg-process-list h3 {
  margin: 15px 0 5px;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dtg-process-list p {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  line-height: 1.35;
}

.dtg-page-body .site-footer {
  z-index: 2;
  margin-top: -200px;
}

.screenprint-hero {
  background: linear-gradient(125deg, #e7e37b 0%, #b9c9ef 48%, #ef5ea0 100%);
}

.screenprint-file-link {
  background: #6c8d21;
}

.screenprint-design-display {
  box-shadow: 14px 14px 0 #6c8d21;
}

.screenprint-mockup-section {
  background: #dcb8f2;
}

.screenprint-mockup-placeholder {
  background: #ef5ea0;
}

.screenprint-process-section {
  background: #e7e37b;
}

.screenprint-page-body .site-footer {
  z-index: 2;
  margin-top: -200px;
}

/* MUG DESIGN PROJECT */

.mug-hero {
  padding: 108px 0 88px;
  color: #1f1722;
  background: #9db2df;
}

.mug-hero-inner {
  text-align: center;
}

.mug-eyebrow,
.mug-section-label {
  margin: 0 0 12px;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mug-hero h1,
.mug-preview-copy h2,
.mug-details-section h2 {
  margin: 0;
  font-family: "contempora-sans-condensed", sans-serif;
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.mug-hero h1 {
  font-size: clamp(4.5rem, 12vw, 9.5rem);
}

.mug-hero p:not(.mug-eyebrow) {
  width: min(100%, 530px);
  margin: 28px auto 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
}

.mug-preview-section {
  padding: 90px 0;
  background: var(--yellow);
}

.mug-preview-layout,
.mug-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 8vw, 110px);
}

.mug-preview-copy h2,
.mug-details-section h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.mug-preview-copy > p:not(.mug-section-label),
.mug-details-copy > p {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.mug-design-file {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 20px;
  border: 2px solid var(--stroke);
  border-radius: 999px;
  color: var(--white);
  background: #6e8f22;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mug-viewer {
  padding: clamp(20px, 4vw, 38px);
  border: 2px solid var(--stroke);
  background: #f7f4ef;
  box-shadow: 14px 14px 0 #ef5ea0;
}

.mug-carousel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.mug-carousel-slide {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
}

.mug-carousel-slide:not(:first-child) {
  position: absolute;
  inset: 0;
}

.mug-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mug-photo {
  width: min(100%, 430px);
  max-height: 370px;
  object-fit: contain;
  cursor: zoom-in;
}

.mug-zoom-lens {
  position: absolute;
  z-index: 3;
  display: none;
  width: 180px;
  height: 180px;
  pointer-events: none;
  border: 3px solid var(--white);
  border-radius: 10px;
  background-color: var(--white);
  background-repeat: no-repeat;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.32);
}

.mug-zoom-lens.is-visible {
  display: block;
}

.mug-photo-placeholder {
  display: grid;
  width: min(100%, 430px);
  min-height: 310px;
  place-items: center;
  border: 2px dashed #6e6e6e;
  color: #555555;
  background: #cfcfcf;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mug-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.mug-controls button {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--stroke);
  border-radius: 50%;
  color: #1f1722;
  background: var(--white);
  font: inherit;
  cursor: pointer;
}

.mug-details-section {
  padding: 90px 0 290px;
  color: #1f1722;
  background: #ef5ea0;
}

.mug-page-body .site-footer {
  z-index: 2;
  margin-top: -200px;
}

.mug-details-copy > p { margin-top: 0; }

.mug-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 35px 0 0;
}

.mug-meta div { padding-top: 12px; border-top: 2px solid #1f1722; }
.mug-meta dt, .mug-meta dd { margin: 0; }
.mug-meta dt { font-family: "contempora-sans-condensed", sans-serif; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; }
.mug-meta dd { margin-top: 4px; font-family: "Oswald", "Arial Narrow", sans-serif; font-weight: 400; line-height: 1.25; }

@keyframes phone-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-7deg);
  }
  40% {
    transform: rotate(7deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(5deg);
  }
}

/* RESUME PAGE */

.resume-page-body main {
  background: #ffffff;
}

.resume-hero {
  background: #ffffff;
  padding-top: 24px;
  padding-bottom: 36px;
}

.resume-hero-card {
  position: relative;
  background: #f4ef8d;
  border: 1pt solid #000000;
  border-radius: 34px;
  padding: 30px 28px 36px;
  overflow: hidden;
}

.resume-hero-corner-image {
  position: absolute;
  top: -125px;
  right: -120px;
  width: 440px;
  height: auto;
  object-fit: contain;
  display: block;
}

.resume-page-title {
  padding :15px;
  padding-left: 64px;
  color: #e7bef8;
  font-family: deseo-medium, sans-serif;
  font-size: clamp(5rem, 8.8vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  -webkit-text-stroke: 0.75pt #000000;
}

.resume-hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
  align-items: center;
  margin-bottom: 28px;
}

.resume-portrait {
  width: 300px;
  aspect-ratio: 1 / 1;
  justify-self: center;
  border-radius: 50%;
  overflow: hidden;
}

.resume-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.resume-summary h2 {
  margin: 0 0 10px;
  color: #e7bef8;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.15rem);
  font-weight: 700;
  -webkit-text-stroke: 0.75pt #000000;
}

.resume-summary {
  justify-self: start;
  width: min(520px, 100%);
}

.resume-summary p,
.resume-column p,
.resume-work-card p,
.resume-design-list p {
  margin: 0;
  font-family: "contempora-sans-condensed", sans-serif;
}

.resume-summary p {
  max-width: 520px;
  color: #000000;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.resume-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.resume-columns > .resume-column:nth-child(odd) {
  padding-left: 64px;
}

.resume-column h3 {
  margin: 0 0 14px;
  color: #e7bef8;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 34pt;
  font-weight: 700;
  -webkit-text-stroke: 0.75pt #000000;
}

.resume-column p {
  margin-bottom: 8px;
  color: #000000;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  line-height: 1.15;
}

.resume-software-image {
  width: min(180px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
}

.resume-work-band {
  background-image: url("images/work-background.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 36px;
}

.resume-work-layout {
  position: relative;
  display: grid;
  gap: 24px 22px;
  align-items: start;
}

.resume-band-heading,
.resume-design-heading {
  margin: 0;
  font-family: deseo-medium, sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.resume-band-heading {
  color: #d4669e;
  text-align: right;
}

.resume-work-heading {
  color: #000000;
  text-align: center;
  position: absolute;
  top: 20px;
  right: 26px;
  width: 340px;
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: 0.82;
}

.resume-work-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "card1 heading-space"
    "card2 card4"
    "card3 card5";
  gap: 22px 24px;
  align-items: start;
}

.resume-work-card {
  min-height: 190px;
  padding: 24px 28px;
  border-radius: 46px;
  background: #e7bef8;
}

.resume-work-card h3 {
  margin: 0 0 8px;
  color: #000000;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.resume-work-card p {
  margin-bottom: 6px;
  color: #000000;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  line-height: 1.28;
  font-weight: 600;
}

.resume-work-card-1 { grid-area: card1; }
.resume-work-card-2 { grid-area: card2; }
.resume-work-card-3 { grid-area: card3; }
.resume-work-card-4 { grid-area: card4; margin-top: 34px; }
.resume-work-card-5 { grid-area: card5; }

.resume-divider {
  height: 72px;
  background-image: url("images/green-checkered.png");
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.resume-design-band {
  background-color: #a8b6ea;
  background-image: url("images/designxp.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 34px;
  padding-bottom: 420px;
}

.resume-design-layout {
  position: relative;
  display: grid;
  gap: 28px;
}

.resume-design-heading {
  color: #66784d;
  font-size: clamp(4.5rem, 7.6vw, 7.4rem);
  line-height: 0.88;
  text-shadow: 1px 1px 0 #ffffff;
  -webkit-text-stroke: 1pt #000000;
}

.resume-design-list {
  max-width: 720px;
}

.resume-design-group {
  margin-bottom: 28px;
}

.resume-design-group h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "contempora-sans-condensed", sans-serif;
  font-size: clamp(1.7rem, 2.7vw, 2.15rem);
  font-weight: 700;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.28);
    -webkit-text-stroke: .5pt #000000;

}

.resume-design-list p {
  margin-bottom: 4px;
  color: #ffffff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.35rem, 1.95vw, 1.62rem);
  font-weight: 400;
  line-height: 1.18;
  text-shadow: 1.2px 1.2px 1.2px rgba(0, 0, 0, 0.8);
}

.resume-design-image {
  position: absolute;
  top: 110px;
  right: 10px;
  width: min(300px, 32vw);
  height: auto;
  object-fit: contain;
  display: block;
}

/* FOOTER */

.site-footer {
  position: relative;
  margin-top: 20px;
  background-color: transparent;
  background-image: url("images/footer.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 24px 0 36px;
  height: 400px;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  height: 100%;
}

.back-top {
  justify-self: center;
  color: white;
  font-family: "contempora-sans-condensed", sans-serif;
   font-weight: 400;
  font-size: 2.5rem;
}

.footer-brand {
  justify-self: center;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer-links a {
  color: #f5f08b;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.2;
   font-family: "contempora-sans-condensed", sans-serif;
   font-weight: 400;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px 0 20px;
  }

  .nav-left,
  .nav-right {
    justify-self: center;
  }

  .about-grid,
  .contact-grid,
  .resume-hero-top,
  .resume-work-cards,
  .resume-columns,
  .portfolio-showcase-grid,
  .magazine-cover-layout,
  .magazine-details-layout,
  .infographic-details-layout,
  .package-intro-layout,
  .package-viewer-layout,
  .package-files-layout,
  .package-glass-layout,
  .package-process-layout,
  .dtg-design-layout,
  .dtg-mockup-layout,
  .mug-preview-layout,
  .mug-details-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .magazine-cover-copy,
  .magazine-details-layout > div,
  .infographic-details-layout > div,
  .package-intro-copy,
  .package-viewer-copy,
  .package-files-layout > div,
  .package-glass-copy,
  .package-process-layout > div,
  .dtg-design-copy,
  .dtg-mockup-layout > div,
  .mug-preview-copy,
  .mug-details-layout > div {
    width: min(100%, 620px);
    margin-left: auto;
    margin-right: auto;
  }

  .arrow-line {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links {
    position: static;
    order: 2;
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    position: static;
    order: 3;
    flex-direction: column;
    text-align: center;
  }

  .site-footer {
    height: auto;
    min-height: 600px;
    padding: 32px 0 46px;
  }

  .footer-inner {
    min-height: 522px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .back-top {
    order: 1;
  }

  .resume-band-heading,
  .resume-design-heading {
    text-align: center;
  }

  .resume-portrait,
  .resume-summary p,
  .resume-design-list {
    margin-left: auto;
    margin-right: auto;
  }

  .resume-design-layout::after {
    opacity: 0.45;
  }

  .resume-design-image {
    position: static;
    width: min(220px, 60vw);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .nav-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-right {
    width: 240px;
    padding-right: 0;
  }

  .avatar-circle {
    transform: translateY(12px);
  }

  .resume-hero {
    padding: 14px 0 26px;
  }

  .resume-hero-card {
    border-radius: 22px;
    padding: 20px 16px 28px;
  }

  .resume-hero-corner-image {
    top: -60px;
    right: -68px;
    width: 230px;
  }

  .resume-page-title {
    padding: 120px 0 16px;
    font-size: clamp(3.8rem, 16vw, 5.4rem);
    text-align: center;
  }

  .resume-hero-top {
    gap: 16px;
    margin-bottom: 24px;
  }

  .resume-portrait {
    width: min(190px, 58vw);
  }

  .resume-summary {
    text-align: center;
  }

  .resume-summary h2 {
    font-size: 2.3rem;
  }

  .resume-summary p {
    font-size: 1.12rem;
    line-height: 1.3;
  }

  .resume-columns {
    gap: 24px;
  }

  .resume-columns > .resume-column:nth-child(odd) {
    padding-left: 0;
  }

  .resume-column {
    text-align: center;
  }

  .resume-column h3 {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .resume-column p {
    margin-bottom: 6px;
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .resume-software-image {
    width: min(155px, 60vw);
    margin: 0 auto;
  }

  .resume-work-band {
    padding: 58px 0 34px;
  }

  .resume-work-heading {
    position: static;
    width: auto;
    margin: 0 0 28px;
    font-size: clamp(3.8rem, 16vw, 5.4rem);
  }

  .resume-work-cards {
    grid-template-columns: 1fr;
    grid-template-areas:
      "card1"
      "card2"
      "card3"
      "card4"
      "card5";
    gap: 16px;
  }

  .resume-work-card {
    min-height: 0;
    padding: 20px;
    border-radius: 28px;
  }

  .resume-work-card-4 {
    margin-top: 0;
  }

  .resume-work-card h3 {
    font-size: 1.45rem;
  }

  .resume-work-card p {
    font-size: 1rem;
    line-height: 1.35;
  }

  .resume-divider {
    height: 44px;
  }

  .resume-design-band {
    padding: 42px 0 430px;
  }

  .resume-design-heading {
    font-size: clamp(3.6rem, 15vw, 5.2rem);
  }

  .resume-design-group {
    margin-bottom: 22px;
  }

  .resume-design-group h3 {
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .resume-design-list p {
    font-size: 1.1rem;
    line-height: 1.28;
  }

  .contact-page-body {
    overflow-x: hidden;
  }

  .contact-section {
    padding: 40px 0 12px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
    gap: 8px;
    text-align: left;
  }

  .contact-copy {
    transform: none;
  }

  .contact-stack {
    gap: 0;
  }

  .outline-text {
    font-size: clamp(2.45rem, 10.5vw, 4rem);
    -webkit-text-stroke-width: 1px;
  }

  .contact-script {
    margin-top: -3px;
    font-size: clamp(3.8rem, 15vw, 5.4rem);
    transform: translateX(7px);
  }

  .arrow-line {
    width: 72%;
    margin-top: 10px;
    margin-left: 8px;
  }

  .contact-image-placeholder {
    width: min(118px, 100%);
  }

  .contact-image-band {
    height: 660px;
    background-size: auto 100%;
  }

  .contact-band-buttons {
    top: 260px;
    gap: 13px;
    width: calc(100% - 24px);
  }

  .contact-band-button {
    min-height: 48px;
    padding: 9px 14px;
    font-size: 1.15rem;
    overflow-wrap: anywhere;
  }

  .contact-band-button-icon {
    width: 20px;
    height: 20px;
  }

  .portfolio-hero-image {
    min-height: 0;
    aspect-ratio: 1458 / 739;
    background-size: 100% auto;
  }

  .portfolio-band-image {
    display: none;
  }

  .footer-links {
    display: none;
  }

  .site-footer {
    min-height: 400px;
  }

  .footer-inner {
    min-height: 322px;
  }

  .footer-bottom {
    margin-top: auto;
  }

  .playground-page-body main {
    padding: 74px 12px 248px;
  }

  .playground-intro {
    margin-bottom: 32px;
  }

  .playground-gallery {
    column-gap: 12px;
  }

  .playground-piece {
    margin-bottom: 12px;
  }

  .hero-cloud {
    border-radius: 40px;
    padding: 28px 16px;
  }

  .intro-card {
    border-radius: 34px;
    padding: 28px 20px;
  }

  .flower {
    width: 120px;
    height: 120px;
    right: 10px;
    bottom: -40px;
  }

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

  .project-card {
    min-width: 100%;
  }

  .phone-placeholder {
    width: 190px;
    height: 360px;
  }

  .magazine-hero {
    padding: 76px 0 60px;
  }

  .magazine-cover-section,
  .magazine-spread-section,
  .magazine-details-section,
  .infographic-showcase,
  .infographic-details,
  .package-intro,
  .package-viewer-section,
  .package-views,
  .package-files,
  .package-glass,
  .package-process,
  .dtg-design-section,
  .dtg-mockup-section,
  .dtg-process-section,
  .mug-preview-section,
  .mug-details-section {
    padding: 62px 0;
  }

  .magazine-details-section {
    padding-bottom: 262px;
  }

  .infographic-details {
    padding-bottom: 262px;
  }

  .package-process {
    padding-bottom: 262px;
  }

  .dtg-process-section {
    padding-bottom: 262px;
  }

  .mug-details-section {
    padding-bottom: 262px;
  }

  .magazine-cover-display {
    padding: 15px;
    box-shadow: 8px 8px 0 #ef5ea0;
  }

  .magazine-note {
    right: -8px;
    top: -15px;
  }

  .magazine-meta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .infographic-meta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .package-stacked-photos {
    min-height: 400px;
  }

  .package-viewer-controls {
    justify-content: center;
  }

  .package-scene {
    margin-top: 10px;
  }

  .package-view-grid,
  .package-file-grid {
    grid-template-columns: 1fr;
    width: min(100%, 390px);
    margin-left: auto;
    margin-right: auto;
  }

  .dtg-process-list {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .package-view-grid img:nth-child(2) {
    transform: rotate(2deg);
  }

  .mug-meta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mug-carousel,
  .mug-carousel-slide {
    min-height: 280px;
  }

  .mug-photo-placeholder {
    min-height: 230px;
  }
}
