﻿/*
Theme Name: Anasia Cruz Portfolio
Theme URI: https://example.com/anasia-cruz-portfolio
Author: Anasia Cruz
Author URI: https://example.com
Description: A vintage editorial portfolio theme for graphic artist Anasia Cruz.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anasia-cruz-portfolio
*/
:root {
  --orange: #c95118;
  --orange-hot: #ed6b1f;
  --burgundy: #270713;
  --burgundy-2: #3c1023;
  --purple: #43204c;
  --cream: #f2c895;
  --paper: #e9b978;
  --gold: #f5a333;
  --ink: #210712;
  --line: rgba(245, 163, 51, .55);
  --body: "Special Elite", "Courier New", monospace;
  --display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--burgundy);
  font-family: var(--body);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.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;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.paper-noise,
.paper-noise::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .2;
  background-image:
    radial-gradient(circle at 18% 31%, rgba(255, 255, 255, .2) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 66%, rgba(24, 4, 10, .28) 0 1px, transparent 1px);
  background-size: 6px 7px, 9px 11px;
  mix-blend-mode: overlay;
}

.paper-noise::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(115deg, transparent 0 45%, rgba(255,255,255,.08) 46% 47%, transparent 48%);
  background-size: 220px 220px;
}

.shell {
  width: min(100% - 42px, 1380px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 104px;
  padding: 16px clamp(20px, 4vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #ffe0ae;
  background:
    radial-gradient(circle at 10% 0, rgba(237, 107, 31, .28), transparent 25%),
    rgba(39, 7, 19, .94);
  border-bottom: 1px solid rgba(245, 163, 51, .28);
  transition: height .25s ease, backdrop-filter .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(39, 7, 19, .78);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
}

.monogram {
  width: clamp(96px, 9vw, 142px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
  transition: width .25s ease, transform .25s ease;
}

.site-header.is-scrolled .monogram {
  width: clamp(74px, 7vw, 104px);
}

.brand-copy span,
.main-nav a,
.section-kicker,
.filters button,
.footer h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.brand-copy span {
  display: block;
  font-size: clamp(19px, 2vw, 30px);
}

.brand-copy small {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.brand-copy small::before,
.brand-copy small::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
}

.main-nav a.is-active {
  color: var(--orange-hot);
}

.main-nav a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: currentColor;
}

.main-nav a.is-active::after {
  content: "✶";
  position: absolute;
  left: 50%;
  bottom: -33px;
  transform: translateX(-50%);
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  place-content: center;
  gap: 22px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: .25s ease;
  background:
    radial-gradient(circle at 18% 18%, rgba(237, 107, 31, .32), transparent 28%),
    linear-gradient(rgba(39, 7, 19, .96), rgba(39, 7, 19, .96));
}

.mobile-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mobile-panel a {
  color: #ffe0ae;
  font: 600 38px/1 var(--display);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero {
  position: relative;
  min-height: 682px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--burgundy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 72%, rgba(67, 32, 76, .62), transparent 26%),
    linear-gradient(90deg, rgba(39, 7, 19, .86) 0%, rgba(39, 7, 19, .7) 38%, rgba(39, 7, 19, .08) 67%, rgba(39, 7, 19, .1) 100%);
}

.hero::before,
.work::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(22deg, transparent 0 47%, rgba(33, 7, 18, .32) 48% 50%, transparent 51%),
    radial-gradient(circle, rgba(33, 7, 18, .38) 0 1px, transparent 1px);
  background-size: 170px 170px, 11px 13px;
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 5.2fr) minmax(360px, 6.8fr);
  min-height: inherit;
}

.hero-copy {
  position: relative;
  z-index: 4;
  isolation: isolate;
  align-self: center;
  max-width: 610px;
  padding-block: 92px;
  color: #ffe0ae;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(330px, 31vw, 470px);
  height: 650px;
  left: clamp(-220px, -14vw, -160px);
  top: 10px;
  background: url("assets/hero-floral left.png") left center / contain no-repeat;
  opacity: .92;
  filter: brightness(1.55) saturate(1.18) contrast(1.08);
  transform: rotate(-13deg);
  transform-origin: 38% 54%;
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: clamp(300px, 29vw, 370px);
  margin: 0 0 24px;
  font: 700 18px/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 9vw, 152px);
  font-weight: 700;
  line-height: .76;
  letter-spacing: 0;
}

.hero h1 em {
  display: inline-block;
  margin-right: -.02em;
  font-family: "Parisienne", "Brush Script MT", cursive;
  font-size: .42em;
  font-style: normal;
  font-weight: 400;
  line-height: .8;
  transform: translate(.18em, -.78em);
}

.intent-line {
  display: block;
  white-space: nowrap;
}

.intro {
  max-width: 470px;
  margin: 44px 0 28px;
  font-size: 16px;
  line-height: 1.7;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 66px;
  padding: 0 44px;
  color: #ffe0ae;
  background:
    radial-gradient(circle at 10% 30%, rgba(245, 163, 51, .16), transparent 30%),
    var(--purple);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 4px rgba(39, 7, 19, .22);
  font: 600 17px/1 var(--display);
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.primary-cta:hover {
  transform: translateY(-3px) rotate(-.4deg);
  filter: brightness(1.08);
}

.hero-art {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  min-height: 100%;
  isolation: isolate;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: sepia(.18) saturate(.82) contrast(1.08);
}

.hero-art picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(39, 7, 19, .82) 0%, rgba(39, 7, 19, .62) 36%, rgba(39, 7, 19, .06) 66%, rgba(39, 7, 19, .08) 100%),
    radial-gradient(circle at 16% 40%, rgba(67, 32, 76, .38), transparent 18%),
    radial-gradient(circle at 92% 70%, rgba(67, 32, 76, .22), transparent 23%);
  mix-blend-mode: multiply;
}

.stamp {
  position: absolute;
  right: 34px;
  top: 92px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  border: 3px double var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(242, 200, 149, .55);
  font-family: var(--display);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(10deg);
}

.postage {
  position: absolute;
  right: 56px;
  bottom: 46px;
  z-index: 3;
  width: clamp(178px, 16vw, 248px);
  aspect-ratio: 1 / 1.24;
  background: url("assets/postage.png") center / contain no-repeat;
  filter: sepia(.08) saturate(.96) contrast(1.03);
  transform: rotate(11deg);
}

.hero-floral {
  display: none;
}

.band {
  position: relative;
  padding: 36px 0 42px;
  color: #ffe0ae;
  background:
    linear-gradient(rgba(39, 7, 19, .28), rgba(39, 7, 19, .34)),
    url("assets/skill_section bg.png") center center / cover no-repeat,
    linear-gradient(180deg, #2a0716, #260713);
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--gold);
  text-align: center;
  font-size: 26px;
}

.section-kicker.dark {
  color: #8d2c15;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.skills-grid article {
  min-height: 250px;
  padding: 16px 26px 10px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  border-left: 1px solid var(--line);
}

.skills-grid article:first-child {
  border-left: 0;
}

.skill-icon {
  position: relative;
  display: block;
  width: 112px;
  height: 100px;
  margin-bottom: 16px;
  color: var(--gold);
}

.skill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.05);
}

.skill-icon::before,
.skill-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.nib::before {
  inset: 14px 42px 22px;
  border: 2px solid;
  transform: rotate(34deg);
  border-radius: 48% 48% 4px 48%;
}

.nib::after {
  width: 2px;
  height: 74px;
  left: 54px;
  top: 8px;
  background: currentColor;
  transform: rotate(34deg);
}

.bloom::before {
  inset: 16px 30px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-28deg);
}

.bloom::after {
  width: 68px;
  height: 68px;
  left: 27px;
  top: 4px;
  background:
    radial-gradient(ellipse at 50% 12%, transparent 0 12px, currentColor 13px 15px, transparent 16px),
    radial-gradient(ellipse at 20% 45%, transparent 0 12px, currentColor 13px 15px, transparent 16px),
    radial-gradient(ellipse at 78% 48%, transparent 0 12px, currentColor 13px 15px, transparent 16px);
}

.roller::before {
  left: 18px;
  right: 18px;
  top: 14px;
  height: 40px;
  border: 2px solid;
  border-radius: 18px;
}

.roller::after {
  width: 26px;
  height: 54px;
  left: 43px;
  top: 48px;
  border: 2px solid;
  border-top: 0;
  border-radius: 0 0 14px 14px;
}

.camera::before {
  inset: 24px 16px 20px;
  border: 2px solid;
}

.camera::after {
  width: 38px;
  height: 38px;
  left: 37px;
  top: 36px;
  border: 2px solid;
  border-radius: 50%;
  box-shadow: -24px -15px 0 -14px currentColor;
}

.type {
  display: grid;
  place-items: center;
  font: 700 86px/1 var(--display);
}

.palette::before {
  inset: 16px 14px 14px;
  border: 2px solid;
  border-radius: 50% 45% 55% 45%;
}

.palette::after {
  width: 12px;
  height: 12px;
  left: 38px;
  top: 35px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 24px 10px 0 currentColor, 40px 32px 0 currentColor;
}

.skills-grid h3,
.project-card h3 {
  margin: 0;
  color: var(--gold);
  font: 600 18px/1.1 var(--display);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.skills-grid p {
  max-width: 190px;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.work {
  position: relative;
  padding: 34px 0 58px;
  background:
    linear-gradient(rgba(242, 200, 149, .08), rgba(234, 185, 120, .1)),
    url("assets/work_section bg.png") center center / cover no-repeat,
    linear-gradient(#f2c895, #eab978);
  overflow: hidden;
}

.work .shell {
  position: relative;
  z-index: 2;
}

.work::before {
  display: none;
}

.work h2 {
  margin: -12px 0 18px;
  text-align: center;
  font: 700 clamp(34px, 4.6vw, 54px)/1 var(--display);
  letter-spacing: 0;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filters button {
  min-height: 34px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.filters button.active {
  color: #fff0d2;
  background: var(--orange);
  border-radius: 18px;
  border-bottom: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

[data-featured-grid] {
  transition: opacity .38s ease, transform .38s ease;
}

[data-featured-grid].is-swapping {
  opacity: .18;
  transform: translateY(10px);
}

.project-card {
  text-align: center;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}

.project-card:focus-visible {
  outline: 2px solid var(--orange-hot);
  outline-offset: 8px;
}

.project-card.is-hidden {
  display: none;
}

.project-card.is-feature-hidden {
  display: none;
}

.project-card:hover {
  transform: translateY(-5px) rotate(-.3deg);
}

.poster {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 14px;
  display: grid;
  place-content: start center;
  padding-top: 28px;
  color: #ffe0ae;
  border: 8px solid rgba(39, 7, 19, .18);
  outline: 1px solid rgba(39, 7, 19, .65);
  box-shadow: 0 12px 0 rgba(39, 7, 19, .08);
  overflow: hidden;
}

.poster::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245, 163, 51, .65);
}

.poster::after {
  content: "âœ¶";
  position: absolute;
  left: 50%;
  bottom: 25%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 46px;
}

.poster span,
.poster strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.poster span {
  font-size: clamp(24px, 3vw, 40px);
}

.poster strong {
  font-size: 16px;
}

.poster-wild {
  background:
    radial-gradient(circle at 50% 68%, rgba(245, 163, 51, .2), transparent 18%),
    linear-gradient(145deg, #421040, #260713);
}

.poster-cafe {
  background:
    radial-gradient(circle at 50% 58%, #2a0716 0 32px, transparent 34px),
    radial-gradient(circle at 50% 62%, rgba(255, 221, 146, .65), transparent 32%),
    linear-gradient(145deg, #d45c1f, #8c2c14);
}

.poster-papillon {
  color: var(--ink);
  background:
    radial-gradient(ellipse at 50% 58%, transparent 0 43px, var(--ink) 44px 47px, transparent 48px),
    linear-gradient(145deg, #e7bb7c, #d09a5d);
}

.poster-reves {
  background:
    radial-gradient(circle at 52% 42%, rgba(242, 200, 149, .7), transparent 22%),
    linear-gradient(145deg, #270713, #491343);
}

.project-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0 0 14px;
  border: 8px solid rgba(39, 7, 19, .18);
  outline: 1px solid rgba(39, 7, 19, .65);
  box-shadow: 0 12px 0 rgba(39, 7, 19, .08);
  overflow: hidden;
  background: var(--burgundy);
}

.project-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 163, 51, .16), var(--photo-wash, rgba(39, 7, 19, .34))),
    radial-gradient(circle at 50% 40%, transparent 0 38%, rgba(39, 7, 19, .3) 100%);
  mix-blend-mode: multiply;
}

.project-card:nth-child(4n + 1) {
  --photo-wash: rgba(39, 7, 19, .48);
}

.project-card:nth-child(4n + 2) {
  --photo-wash: rgba(201, 81, 24, .42);
}

.project-card:nth-child(4n + 3) {
  --photo-wash: rgba(67, 32, 76, .48);
}

.project-card:nth-child(4n + 4) {
  --photo-wash: rgba(245, 163, 51, .36);
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.08) saturate(.9) contrast(1.05);
  transition: transform .3s ease, filter .3s ease;
}

.project-card:hover .project-photo img {
  transform: scale(1.04);
  filter: sepia(.04) saturate(1) contrast(1.07);
}

.project-card h3 {
  color: var(--ink);
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
}

.project-card p {
  margin: 6px 0 0;
  color: #8d2c15;
  font-size: 13px;
  text-transform: uppercase;
}

.text-cta {
  width: max-content;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font: 700 18px/1 var(--display);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

[data-page="home"] .featured-filters {
  display: none;
}

[data-page="gallery"] .hero,
[data-page="gallery"] .skills {
  display: none;
}

[data-page="gallery"] .work {
  min-height: 100vh;
  padding-top: 128px;
  padding-bottom: 72px;
  background:
    linear-gradient(90deg, rgba(39, 7, 19, .92) 0, rgba(39, 7, 19, .28) 8%, rgba(39, 7, 19, .08) 50%, rgba(39, 7, 19, .28) 92%, rgba(39, 7, 19, .92) 100%),
    url("assets/work_section bg.png") center top / cover repeat-y,
    linear-gradient(#f2c895, #eab978);
}

[data-page="gallery"] .work::after {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  pointer-events: none;
  background:
    url("assets/hero-floral left.png") left 2% top 24px / min(31vw, 360px) auto no-repeat,
    url("assets/hero-floral left.png") right -5% top 24px / min(31vw, 360px) auto no-repeat;
  opacity: .48;
  filter: brightness(.86) saturate(1.15);
  mix-blend-mode: multiply;
}

[data-page="gallery"] .portfolio-grid {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  gap: 18px;
}

.gallery-masthead {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--ink);
}

.gallery-masthead p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 4px;
  font: 700 18px/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gallery-masthead p span {
  width: 88px;
  height: 1px;
  background: rgba(33, 7, 18, .6);
}

.gallery-masthead h1 {
  margin: 0;
  font: 700 clamp(72px, 10vw, 124px)/.8 var(--display);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gallery-masthead em {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  font: 400 clamp(28px, 4vw, 42px)/1 "Parisienne", "Brush Script MT", cursive;
}

.gallery-masthead em::before,
.gallery-masthead em::after {
  content: "";
  width: 86px;
  height: 1px;
  background: rgba(33, 7, 18, .48);
}

.gallery-stamp {
  position: absolute;
  right: -110px;
  top: 2px;
  width: 132px;
  transform: rotate(9deg);
  opacity: .86;
  filter: sepia(.08) saturate(1.04) contrast(1.08);
}

.gallery-stamp img {
  width: 100%;
  height: auto;
}

[data-page="gallery"] .filters {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(33, 7, 18, .35);
}

[data-page="gallery"] .filters::after {
  content: "✶";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  color: var(--ink);
}

[data-page="gallery"] .project-photo {
  border-width: 5px;
  box-shadow: 0 8px 0 rgba(39, 7, 19, .1);
}

[data-page="gallery"] .project-card h3 {
  margin-top: 10px;
}

[data-page="gallery"] .text-cta {
  color: #ffe0ae;
  min-height: 48px;
  padding: 0 34px;
  border: 1px solid var(--gold);
  background: var(--purple);
  box-shadow: inset 0 0 0 3px rgba(39, 7, 19, .18);
}

[data-page="contact"] {
  background: var(--paper);
}

[data-page="construction"] {
  min-height: 100vh;
  background: var(--burgundy);
}

.construction-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(39, 7, 19, .92) 0, rgba(39, 7, 19, .28) 13%, rgba(39, 7, 19, .08) 50%, rgba(39, 7, 19, .28) 87%, rgba(39, 7, 19, .92) 100%),
    url("assets/About%20Page%20Bg.png") center / cover no-repeat,
    linear-gradient(#f2c895, #eab978);
  overflow: hidden;
}

.construction-panel {
  position: relative;
  width: min(100%, 820px);
  padding: clamp(34px, 7vw, 76px) clamp(22px, 6vw, 68px);
  color: var(--ink);
  text-align: center;
}

.construction-panel::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(242, 200, 149, .66), rgba(242, 200, 149, .38) 54%, rgba(242, 200, 149, 0) 76%);
  filter: blur(7px);
}

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

.construction-mark {
  width: clamp(124px, 18vw, 190px);
  margin: 0 auto 8px;
}

.construction-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 18px;
  font: 700 16px/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.construction-kicker span {
  width: 58px;
  height: 1px;
  background: rgba(33, 7, 18, .55);
}

.construction-panel h1 {
  margin: 0;
  font: 700 clamp(54px, 9vw, 116px)/.86 var(--display);
  letter-spacing: .01em;
}

.construction-copy {
  max-width: 560px;
  margin: 28px auto 0;
  font-size: 16px;
  line-height: 1.75;
}

.construction-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
}

[data-page="about"] {
  background: var(--paper);
}

.about-page {
  position: relative;
  padding: 118px 0 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(39, 7, 19, .42) 0, rgba(39, 7, 19, .12) 14%, rgba(39, 7, 19, .02) 46%, rgba(237, 107, 31, .08) 100%),
    url("assets/About%20Page%20Bg.png") center top / cover repeat-y,
    linear-gradient(#f2c895, #eab978);
}

.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("assets/postage.png") right 6vw bottom 90px / min(16vw, 172px) auto no-repeat;
  opacity: .3;
  filter: brightness(.98) saturate(1.08);
  mix-blend-mode: multiply;
}

.about-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.about-copy {
  position: relative;
  max-width: 760px;
  padding: clamp(18px, 3vw, 34px);
}

.about-copy::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 38% 38%, rgba(242, 200, 149, .66), rgba(242, 200, 149, .38) 54%, rgba(242, 200, 149, 0) 76%);
  filter: blur(7px);
  pointer-events: none;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 20px;
  color: var(--ink);
  font: 700 17px/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-kicker span {
  width: 68px;
  height: 1px;
  background: rgba(33, 7, 18, .55);
}

.about-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font: 700 clamp(58px, 7.8vw, 112px)/.86 var(--display);
}

.about-lede {
  margin-top: 30px;
}

.about-copy p:not(.about-kicker) {
  max-width: 680px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.76;
  text-shadow: 0 1px 0 rgba(242, 200, 149, .48);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.about-text-cta {
  margin: 0;
}

.about-portrait {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(33, 7, 18, .5);
  outline: 8px solid rgba(242, 200, 149, .22);
  overflow: hidden;
  background: var(--burgundy);
  transform: rotate(1.2deg);
  box-shadow: 0 18px 0 rgba(39, 7, 19, .12);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(39, 7, 19, .02), rgba(39, 7, 19, .24)),
    radial-gradient(circle at 20% 15%, rgba(237, 107, 31, .18), transparent 35%);
  mix-blend-mode: multiply;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: 63% center;
  filter: sepia(.08) saturate(.92) contrast(1.05);
}

.about-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: clamp(116px, 12vw, 154px);
  transform: rotate(-8deg);
  filter: sepia(.08) saturate(1.04) contrast(1.08);
  opacity: .92;
}

.about-stamp img {
  width: 100%;
  min-height: 0;
  height: auto;
}

.about-notes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 68px;
  border-top: 1px solid rgba(33, 7, 18, .42);
  border-bottom: 1px solid rgba(33, 7, 18, .42);
}

.about-notes article {
  min-height: 178px;
  padding: 28px clamp(18px, 3vw, 38px);
  border-left: 1px solid rgba(33, 7, 18, .28);
}

.about-notes article:first-child {
  border-left: 0;
}

.about-notes span {
  display: block;
  margin-bottom: 16px;
  color: #9c3715;
  font: 700 13px/1 var(--display);
  letter-spacing: .16em;
}

.about-notes h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font: 700 26px/1 var(--display);
}

.about-notes p {
  margin: 0;
  max-width: 300px;
  line-height: 1.55;
}

.contact-page {
  position: relative;
  min-height: calc(100vh - 104px);
  padding: 126px 0 86px;
  overflow: hidden;
  color: #ffe0ae;
  background:
    linear-gradient(90deg, rgba(39, 7, 19, .94) 0, rgba(39, 7, 19, .76) 28%, rgba(39, 7, 19, .52) 62%, rgba(39, 7, 19, .4) 100%),
    url("assets/Contact%20Page%20Bg.png") center top / cover repeat-y,
    linear-gradient(#270713, #3c1023);
}

.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("assets/postage.png") right 7vw bottom 58px / min(18vw, 190px) auto no-repeat;
  opacity: .18;
  filter: brightness(1.04) saturate(1.08);
  mix-blend-mode: multiply;
}

.contact-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 22%, rgba(237, 107, 31, .2), transparent 28%),
    linear-gradient(180deg, rgba(39, 7, 19, .18), rgba(39, 7, 19, .42));
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}

.contact-intro {
  position: relative;
  max-width: 680px;
  padding-top: 20px;
}

.contact-intro::before {
  content: "";
  position: absolute;
  inset: -20px -24px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 42% 36%, rgba(39, 7, 19, .7), rgba(39, 7, 19, .38) 55%, rgba(39, 7, 19, 0) 78%);
  filter: blur(7px);
  pointer-events: none;
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  color: #ffe0ae;
  font: 700 17px/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-kicker span {
  width: 68px;
  height: 1px;
  background: rgba(245, 163, 51, .7);
}

.contact-intro h1 {
  margin: 0;
  color: #ffe0ae;
  font: 700 clamp(64px, 9vw, 128px)/.82 var(--display);
  letter-spacing: .02em;
}

.contact-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: #ffe0ae;
  font-size: 16px;
  line-height: 1.75;
}

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

.contact-method {
  position: relative;
  min-height: 94px;
  padding: 16px 0 0;
  color: #ffe0ae;
  text-decoration: none;
  border-top: 1px solid rgba(245, 163, 51, .42);
}

.contact-method::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 34px;
  height: 5px;
  background: var(--orange-hot);
}

.contact-method span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font: 700 13px/1 var(--display);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-method strong {
  display: block;
  font: 700 clamp(20px, 2vw, 28px)/1.08 var(--display);
}

.contact-form {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  color: var(--burgundy);
  background:
    linear-gradient(145deg, rgba(237, 107, 31, .96), rgba(201, 81, 24, .94)),
    radial-gradient(circle at 88% 8%, rgba(255, 224, 174, .28), transparent 32%);
  border: 1px solid rgba(255, 224, 174, .78);
  box-shadow: inset 0 0 0 4px rgba(39, 7, 19, .1);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(39, 7, 19, .24);
}

.form-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.form-heading p,
.contact-form label span {
  display: block;
  margin: 0 0 9px;
  color: var(--burgundy);
  font: 700 13px/1 var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  font: 700 clamp(36px, 4vw, 58px)/.9 var(--display);
}

.contact-form label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  color: var(--burgundy);
  border: 1px solid rgba(39, 7, 19, .46);
  background: rgba(255, 224, 174, .42);
  border-radius: 0;
  font: 15px/1.35 var(--body);
  outline: 0;
}

.contact-form select {
  color: var(--burgundy);
}

.contact-form textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(39, 7, 19, .16);
}

.contact-submit {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  background: var(--purple);
  color: #ffe0ae;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s ease, visibility .22s ease;
}

.project-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(28, 5, 13, .78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 1060px);
  max-height: min(720px, 88vh);
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, .85fr);
  gap: 0;
  color: #ffe0ae;
  background:
    radial-gradient(circle at 82% 12%, rgba(237, 107, 31, .2), transparent 28%),
    linear-gradient(145deg, rgba(48, 9, 24, .98), rgba(31, 6, 15, .98));
  border: 1px solid rgba(245, 163, 51, .45);
  box-shadow: 0 22px 80px rgba(15, 2, 8, .58);
  overflow: hidden;
  transform: scale(.96) translateY(12px);
  transition: transform .22s ease;
}

.project-modal.is-open .modal-panel {
  transform: none;
}

.modal-art {
  min-height: 520px;
  padding: clamp(22px, 4vw, 42px);
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(rgba(242, 200, 149, .18), rgba(234, 185, 120, .08)),
    url("assets/work_section bg.png") center / cover no-repeat;
}

.modal-image-frame {
  width: min(100%, 430px);
  height: min(54vh, 500px);
  margin-inline: auto;
  border: 8px solid rgba(39, 7, 19, .2);
  outline: 1px solid rgba(39, 7, 19, .62);
  background: var(--burgundy);
  overflow: hidden;
  box-shadow: 0 18px 0 rgba(39, 7, 19, .14);
  transform: rotate(-1.2deg);
}

.modal-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.04) saturate(.96) contrast(1.04);
}

.modal-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-thumbs button {
  width: 62px;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  background: var(--burgundy);
  cursor: pointer;
  overflow: hidden;
}

.modal-thumbs button.is-active {
  border-color: var(--orange-hot);
}

.modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-art .poster {
  width: min(100%, 380px);
  margin: 0;
  transform: rotate(-1.2deg);
  box-shadow: 0 18px 0 rgba(39, 7, 19, .14);
}

.modal-copy {
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  align-content: center;
  border-left: 1px solid rgba(245, 163, 51, .34);
}

.modal-copy p:first-child {
  margin: 0 0 16px;
  color: var(--gold);
  font: 700 13px/1 var(--display);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 0;
  font: 700 clamp(40px, 5vw, 66px)/.92 var(--display);
  letter-spacing: 0;
}

.modal-copy p:not(:first-child) {
  margin: 24px 0 34px;
  font-size: 15px;
  line-height: 1.7;
}

.modal-copy button {
  width: max-content;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  color: #ffe0ae;
  background: var(--purple);
  font: 600 13px/1 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer {
  position: relative;
  padding: 34px 0 26px;
  color: #ffe0ae;
  background:
    radial-gradient(circle at 86% 35%, rgba(237, 107, 31, .2), transparent 18%),
    linear-gradient(180deg, #350a1a, #1d0610);
  overflow: hidden;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr .8fr .9fr 1.4fr;
  gap: 48px;
}

.footer a {
  display: block;
  width: max-content;
  margin: 0 0 10px;
  font-size: 13px;
  text-decoration: none;
}

.footer h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 17px;
}

.footer p,
.newsletter label {
  max-width: 250px;
  display: block;
  font-size: 14px;
  line-height: 1.65;
}

.newsletter div {
  display: flex;
  margin-top: 18px;
  border: 1px solid var(--orange-hot);
}

.newsletter input,
.newsletter button {
  min-height: 48px;
  border: 0;
  font: 14px/1 var(--body);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 0 16px;
  color: #ffe0ae;
  background: transparent;
}

.newsletter input::placeholder {
  color: #ffe0ae;
}

.newsletter button {
  width: 58px;
  color: var(--burgundy);
  background: var(--orange-hot);
  cursor: pointer;
}

.copyright {
  position: relative;
  z-index: 2;
  max-width: none;
  width: max-content;
  margin: 28px 0 0;
  margin-inline: auto;
  text-align: center;
  color: #ffe0ae;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-copy {
    max-width: 720px;
    padding: 80px 0 34px;
  }

  .hero-art {
    min-height: 520px;
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .skills-grid article:nth-child(4) {
    border-left: 0;
  }

  .portfolio-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-panel {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-art {
    min-height: 420px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .about-portrait {
    min-height: 520px;
    max-width: 720px;
  }

  .about-portrait img {
    min-height: 520px;
  }

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

  .about-notes article,
  .about-notes article:first-child {
    border-left: 0;
    border-top: 1px solid rgba(33, 7, 18, .28);
  }

  .about-notes article:first-child {
    border-top: 0;
  }

  .contact-intro {
    max-width: 760px;
  }

  .contact-form {
    max-width: 720px;
  }

  .modal-copy {
    border-left: 0;
    border-top: 1px solid rgba(245, 163, 51, .34);
  }

  .gallery-stamp {
    position: relative;
    right: auto;
    top: auto;
    margin: 18px auto 0;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1380px);
  }

  .site-header {
    height: 82px;
    padding-inline: 16px;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
    background:
      linear-gradient(rgba(39, 7, 19, .9), rgba(39, 7, 19, .94)),
      var(--burgundy);
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    order: 2;
    width: min(100% - 28px, 420px);
    max-width: none;
    margin-inline: auto;
    padding-block: 38px 42px;
  }

  .hero-copy::before {
    width: 210px;
    height: 360px;
    left: -34px;
    top: 8px;
    opacity: .68;
    transform: rotate(-8deg);
    background-position: left top;
  }

  .eyebrow {
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    font-size: 13px;
    gap: 12px;
  }

  .eyebrow span {
    width: 40px;
  }

  .hero h1 {
    max-width: 100%;
    text-align: center;
    font-size: clamp(70px, 22vw, 92px);
    line-height: .78;
  }

  .hero h1 em {
    padding-left: .42em;
    transform: translate(.08em, -.72em);
  }

  .intent-line {
    white-space: nowrap;
  }

  .intro {
    max-width: 330px;
    margin: 26px auto 24px;
    text-align: center;
    font-size: 14px;
  }

  .primary-cta {
    width: 100%;
    justify-content: center;
    padding-inline: 20px;
  }

  .hero-art {
    position: relative;
    order: 1;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    height: min(92vw, 470px);
    transform: none;
  }

  .hero-art img {
    object-position: center 38%;
  }

  .hero-art::after {
    display: block;
    background:
      linear-gradient(180deg, rgba(39, 7, 19, .02) 52%, rgba(39, 7, 19, .82) 100%),
      linear-gradient(90deg, rgba(39, 7, 19, .36), rgba(39, 7, 19, .04) 34%, rgba(39, 7, 19, .06) 100%);
    mix-blend-mode: multiply;
  }

  .stamp,
  .postage,
  .hero-floral {
    display: none;
  }

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

  .skills-grid article,
  .skills-grid article:nth-child(4) {
    min-height: auto;
    padding-block: 28px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .skills-grid article:first-child {
    border-top: 0;
  }

  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    gap: 10px;
  }

  .filters button {
    font-size: 12px;
    padding-inline: 12px;
  }

  .gallery-masthead p {
    gap: 12px;
    font-size: 13px;
  }

  .gallery-masthead p span,
  .gallery-masthead em::before,
  .gallery-masthead em::after {
    width: 36px;
  }

  .gallery-masthead h1 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .gallery-masthead em {
    font-size: 27px;
  }

  .contact-page {
    padding: 72px 0 58px;
  }

  .construction-page {
    padding: 22px 14px;
  }

  .construction-panel {
    padding: 28px 4px;
  }

  .construction-kicker {
    gap: 12px;
    font-size: 12px;
  }

  .construction-kicker span {
    width: 34px;
  }

  .construction-panel h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .construction-copy {
    font-size: 14px;
  }

  .construction-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .construction-actions .primary-cta {
    width: 100%;
    justify-content: center;
  }

  .about-page {
    padding: 70px 0 58px;
  }

  .about-page::before {
    background:
      url("assets/postage.png") right -28px bottom 42px / 112px auto no-repeat;
    opacity: .24;
  }

  .about-kicker {
    gap: 12px;
    font-size: 13px;
  }

  .about-kicker span {
    width: 34px;
  }

  .about-copy h1 {
    font-size: clamp(48px, 16vw, 76px);
  }

  .about-copy p:not(.about-kicker) {
    font-size: 14px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-actions .primary-cta,
  .about-actions .text-cta {
    width: 100%;
    justify-content: center;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 390px;
  }

  .about-stamp {
    width: 104px;
  }

  .about-notes {
    margin-top: 42px;
  }

  .about-notes article {
    min-height: auto;
    padding: 24px 0;
  }

  .contact-page::before {
    background:
      url("assets/postage.png") right -24px bottom 36px / 116px auto no-repeat;
    opacity: .16;
  }

  .contact-kicker {
    gap: 12px;
    font-size: 13px;
  }

  .contact-kicker span {
    width: 36px;
  }

  .contact-intro h1 {
    font-size: clamp(54px, 19vw, 82px);
  }

  .contact-lede {
    font-size: 14px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form::before {
    inset: 9px;
  }

  .footer-grid {
    gap: 28px;
  }

  .project-modal {
    padding: 14px;
  }

  .modal-art {
    min-height: 320px;
    padding: 18px;
  }

  .modal-art .poster {
    width: min(100%, 260px);
  }

  .modal-copy {
    padding: 24px;
  }

  .modal-copy p:not(:first-child) {
    margin-bottom: 24px;
  }
}

