:root {
  --paper: #fff3df;
  --paper-deep: #f4d4ae;
  --mat: #fffdf7;
  --ink: #24211f;
  --muted: #5d5249;
  --teal: #78b8bb;
  --teal-deep: #2f6f75;
  --sage: #a9bd86;
  --mint: #d9efd8;
  --coral: #ed6960;
  --rose: #f29ab4;
  --raspberry: #ce4f6d;
  --mustard: #efbd49;
  --butter: #fff0a6;
  --blue: #7299bd;
  --lilac: #b6a2d5;
  --frame: #1e1d1b;
  --line: rgba(36, 33, 31, 0.16);
  --shadow: 0 22px 60px rgba(58, 45, 32, 0.18);
  --small-shadow: 0 12px 30px rgba(58, 45, 32, 0.12);
  --radius: 8px;
  --content: 1180px;
  --font-signature: "Special Elite", "American Typewriter", "Veteran Typewriter", "Courier Prime", "Courier New", monospace;
  --font-typewriter: "Courier Prime", "American Typewriter", "Veteran Typewriter", "Special Elite", "Courier New", monospace;
  --font-copy: "Nunito Sans", "Gill Sans", "Trebuchet MS", Arial, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-copy);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 18px 18px, rgba(237, 105, 96, 0.17) 0 4px, transparent 5px) 0 0 / 92px 92px,
    radial-gradient(circle at 62px 58px, rgba(239, 189, 73, 0.2) 0 5px, transparent 6px) 0 0 / 92px 92px,
    radial-gradient(circle at 88% 12%, rgba(120, 184, 187, 0.32), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgba(242, 154, 180, 0.26), transparent 28rem),
    radial-gradient(circle at 74% 74%, rgba(169, 189, 134, 0.28), transparent 32rem),
    linear-gradient(90deg, rgba(36, 33, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 33, 31, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 92px 92px, 92px 92px, auto, auto, auto, 38px 38px, 38px 38px, auto;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(36, 33, 31, 0.12);
  background:
    radial-gradient(circle at 14px 14px, rgba(242, 154, 180, 0.2) 0 3px, transparent 4px) 0 0 / 38px 38px,
    rgba(255, 249, 239, 0.92);
  backdrop-filter: blur(18px);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 56px, var(--mustard) 56px 112px, var(--teal) 112px 168px, var(--rose) 168px 224px, var(--sage) 224px 280px, var(--blue) 280px 336px);
}

.nav-inner {
  width: min(var(--content), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-typewriter);
}

.brand-stamp {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--frame);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--mat) 0 44%, transparent 45%),
    repeating-conic-gradient(from 0deg, var(--rose) 0deg 12deg, var(--teal) 12deg 24deg, var(--mustard) 24deg 36deg, var(--coral) 36deg 48deg, var(--sage) 48deg 60deg);
  box-shadow: inset 0 0 0 4px var(--mat), var(--small-shadow);
  font-family: var(--font-signature);
  font-size: 0.95rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.button-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(36, 33, 31, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.72)),
    var(--butter);
  text-decoration: none;
  font-family: var(--font-typewriter);
  font-weight: 700;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-links a:nth-child(1) {
  box-shadow: inset 0 -5px rgba(120, 184, 187, 0.55);
}

.nav-links a:nth-child(2) {
  box-shadow: inset 0 -5px rgba(239, 189, 73, 0.62);
}

.nav-links a:nth-child(3) {
  box-shadow: inset 0 -5px rgba(237, 105, 96, 0.58);
}

.nav-links a:nth-child(4) {
  box-shadow: inset 0 -5px rgba(169, 189, 134, 0.68);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.button-link:hover,
.button-link:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.art-card:hover,
.art-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--small-shadow);
  outline: none;
}

.button-link.primary {
  border-color: var(--frame);
  color: var(--mat);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06)),
    var(--frame);
  box-shadow: inset 0 -5px var(--coral);
}

.button-link.secondary {
  background:
    radial-gradient(circle at 13px 13px, rgba(237, 105, 96, 0.18) 0 3px, transparent 4px) 0 0 / 28px 28px,
    #fff3f1;
  box-shadow: inset 0 -5px var(--mustard);
}

.button-link.social-facebook {
  border-color: #0866ff;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(0, 0, 0, 0.06)),
    #0866ff;
  box-shadow: inset 0 -5px #064fc4;
}

.button-link.social-instagram {
  border-color: #c13584;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 104%, #feda75 0 18%, transparent 34%),
    radial-gradient(circle at 12% 88%, #fa7e1e 0 20%, transparent 38%),
    linear-gradient(135deg, #833ab4 0%, #c13584 38%, #e1306c 62%, #fd1d1d 100%);
  box-shadow: inset 0 -5px rgba(88, 24, 117, 0.62);
}

.button-link.social-facebook:hover,
.button-link.social-facebook:focus-visible {
  box-shadow: inset 0 -5px #064fc4, var(--small-shadow);
}

.button-link.social-instagram:hover,
.button-link.social-instagram:focus-visible {
  box-shadow: inset 0 -5px rgba(88, 24, 117, 0.62), var(--small-shadow);
}

.button-link.contact-email {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.78)),
    #fff7dc;
  box-shadow: inset 0 -5px var(--mustard);
}

.button-link.contact-phone {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.78)),
    #e6f5f4;
  box-shadow: inset 0 -5px var(--teal);
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(var(--content), calc(100% - 32px));
  min-height: calc(100svh - 118px);
  margin: 0 auto;
  padding: 46px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px -30px auto auto;
  width: min(44vw, 530px);
  height: 220px;
  pointer-events: none;
  opacity: 0.26;
  background:
    radial-gradient(ellipse at 50% 100%, transparent 0 42%, var(--sage) 43% 55%, transparent 56%) 0 0 / 74px 70px repeat-x,
    radial-gradient(circle at 22px 32px, var(--coral) 0 4px, transparent 5px) 0 0 / 74px 70px repeat-x;
  transform: rotate(-2deg);
}

.hero::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 2px;
  width: min(460px, 68vw);
  height: 58px;
  pointer-events: none;
  opacity: 0.58;
  z-index: -1;
  transform: rotate(-3deg);
  background:
    linear-gradient(var(--frame), var(--frame)) 0 16px / 100% 2px no-repeat,
    linear-gradient(145deg, var(--coral) 0 50%, transparent 51%) 0 18px / 48px 38px repeat-x,
    linear-gradient(215deg, var(--mustard) 0 50%, transparent 51%) 24px 18px / 48px 38px repeat-x,
    linear-gradient(145deg, var(--teal) 0 50%, transparent 51%) 48px 18px / 48px 38px repeat-x,
    linear-gradient(215deg, var(--rose) 0 50%, transparent 51%) 72px 18px / 48px 38px repeat-x;
}

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

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -28px auto auto -28px;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38px 34px, var(--coral) 0 8px, transparent 9px),
    radial-gradient(circle at 92px 72px, var(--mustard) 0 9px, transparent 10px),
    radial-gradient(circle at 130px 116px, var(--teal) 0 8px, transparent 9px),
    var(--mint);
  opacity: 0.56;
  z-index: -1;
  transform: rotate(-8deg);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(36, 33, 31, 0.18);
  border-radius: 999px;
  color: var(--teal-deep);
  background:
    radial-gradient(circle at 10px 10px, rgba(239, 189, 73, 0.35) 0 3px, transparent 4px) 0 0 / 22px 22px,
    rgba(255, 253, 248, 0.9);
  font-family: var(--font-signature);
  font-size: 0.86rem;
  font-weight: 400;
}

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

h1,
h2,
h3,
.serif {
  font-family: var(--font-typewriter);
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: 3.25rem;
  text-shadow: 2px 2px 0 rgba(239, 189, 73, 0.3), 4px 4px 0 rgba(120, 184, 187, 0.18);
}

.hero-lede {
  max-width: 55ch;
  margin-bottom: 26px;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.review-badge {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 12px;
  align-items: center;
  margin-bottom: 24px;
  padding: 11px 14px;
  border: 1px solid rgba(36, 33, 31, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    radial-gradient(circle at 12px 12px, rgba(239, 189, 73, 0.32) 0 3px, transparent 4px) 0 0 / 28px 28px,
    rgba(255, 253, 248, 0.92);
  box-shadow: inset 0 -5px rgba(120, 184, 187, 0.42), 0 10px 22px rgba(58, 45, 32, 0.1);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.review-badge:hover,
.review-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: inset 0 -5px rgba(237, 105, 96, 0.46), var(--small-shadow);
  outline: none;
}

.review-badge span,
.review-badge strong {
  font-family: var(--font-typewriter);
  line-height: 1.1;
}

.review-badge span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--mat);
  background: var(--frame);
  font-size: 0.86rem;
}

.review-badge strong {
  font-size: 1rem;
}

.review-badge small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  line-height: 1.35;
}

.local-note {
  max-width: 38rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 2px dashed rgba(47, 111, 117, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.52)),
    repeating-linear-gradient(135deg, rgba(242, 154, 180, 0.2) 0 9px, rgba(255, 240, 166, 0.28) 9px 18px, rgba(120, 184, 187, 0.18) 18px 27px);
}

.pin {
  width: 22px;
  height: 22px;
  border: 2px solid var(--coral);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--coral);
  margin-top: 4px;
  box-shadow: inset 0 0 0 5px var(--mat);
}

.local-note p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
}

.hero-gallery {
  position: relative;
  min-height: 590px;
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 44px 5% 44px 7%;
  z-index: 0;
  border: 1px solid rgba(36, 33, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.5), rgba(255, 253, 248, 0.22)),
    radial-gradient(circle at 28px 26px, rgba(242, 154, 180, 0.74) 0 6px, transparent 7px) 0 0 / 72px 72px,
    radial-gradient(circle at 50px 48px, rgba(239, 189, 73, 0.74) 0 4px, transparent 5px) 0 0 / 72px 72px,
    radial-gradient(ellipse at 22px 50px, rgba(169, 189, 134, 0.72) 0 11px, transparent 12px) 0 0 / 72px 72px,
    var(--mint);
  opacity: 0.72;
  transform: rotate(-1.5deg);
  box-shadow: var(--small-shadow);
}

.hero-gallery::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 42px;
  left: 9%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #af8753, #e0bb7c, #9b6f3f);
  box-shadow: 0 16px 28px rgba(87, 56, 23, 0.18);
  z-index: 1;
}

.frame-card {
  position: absolute;
  overflow: hidden;
  border: 9px solid var(--frame);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.92)),
    var(--mat);
  box-shadow: var(--shadow);
  isolation: isolate;
  margin: 0;
}

.frame-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.72), inset 0 0 24px rgba(36, 33, 31, 0.13);
  z-index: 2;
}

.frame-card img {
  width: 100%;
  height: 100%;
  padding: 12px;
  background: var(--mat);
  object-fit: contain;
  transition: opacity 180ms ease;
}

.hero-piece-main {
  width: 56%;
  aspect-ratio: 0.84;
  top: 30px;
  left: 22%;
  z-index: 4;
  transform: rotate(-0.8deg);
}

.hero-piece-left {
  width: 32%;
  aspect-ratio: 0.84;
  top: 112px;
  left: 3%;
  z-index: 3;
  transform: rotate(-3.2deg);
  border-color: var(--mustard);
}

.hero-piece-right {
  width: 30%;
  aspect-ratio: 0.82;
  top: 92px;
  right: 3%;
  z-index: 2;
  transform: rotate(3deg);
  border-color: var(--teal-deep);
}

.hero-piece-wide {
  width: 43%;
  aspect-ratio: 1.2;
  right: 11%;
  bottom: 18px;
  z-index: 5;
  transform: rotate(1.8deg);
}

.section {
  position: relative;
  padding: 74px 0;
}

.section.alt {
  border-block: 1px solid rgba(36, 33, 31, 0.1);
  background:
    radial-gradient(circle at 18px 18px, rgba(242, 154, 180, 0.3) 0 4px, transparent 5px) 0 0 / 54px 54px,
    radial-gradient(circle at 44px 38px, rgba(120, 184, 187, 0.3) 0 5px, transparent 6px) 0 0 / 54px 54px,
    linear-gradient(135deg, rgba(255, 240, 166, 0.5), rgba(217, 239, 216, 0.54)),
    rgba(255, 253, 248, 0.72);
}

.section-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.65fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 2.35rem;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: min(300px, 82%);
  height: 9px;
  margin-top: 18px;
  border: 1px solid rgba(36, 33, 31, 0.1);
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 38px, var(--mustard) 38px 76px, var(--teal) 76px 114px, var(--rose) 114px 152px, var(--sage) 152px 190px);
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  line-height: 1.72;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gift-card {
  position: relative;
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(36, 33, 31, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 20px 18px, rgba(237, 105, 96, 0.2) 0 5px, transparent 6px) 0 0 / 52px 52px,
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.78)),
    var(--butter);
  box-shadow: var(--small-shadow);
}

.gift-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--coral) 0 34px, var(--mustard) 34px 68px, var(--teal) 68px 102px, var(--rose) 102px 136px);
}

.gift-card:nth-child(2n) {
  background:
    repeating-linear-gradient(0deg, rgba(237, 105, 96, 0.16) 0 8px, rgba(255, 253, 248, 0.58) 8px 18px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.72)),
    #eaf8f7;
}

.gift-card:nth-child(3n) {
  background:
    radial-gradient(ellipse at 22px 18px, rgba(169, 189, 134, 0.42) 0 12px, transparent 13px) 0 0 / 56px 56px,
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.75)),
    #fff5f5;
}

.gift-swatch {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 2px solid var(--frame);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 0 46%, var(--frame) 47% 53%, transparent 54%),
    radial-gradient(circle at 30% 26%, var(--rose) 0 7px, transparent 8px),
    radial-gradient(circle at 66% 68%, var(--mustard) 0 8px, transparent 9px),
    var(--teal);
  box-shadow: inset 0 0 0 6px var(--mat);
}

.gift-card:nth-child(2) .gift-swatch {
  background:
    repeating-linear-gradient(0deg, var(--coral) 0 8px, var(--mat) 8px 16px),
    var(--blue);
}

.gift-card:nth-child(3) .gift-swatch {
  background:
    radial-gradient(circle, var(--mat) 0 38%, transparent 39%),
    repeating-conic-gradient(var(--sage) 0 18deg, var(--paper-deep) 18deg 36deg);
}

.gift-card:nth-child(4) .gift-swatch {
  background:
    radial-gradient(circle at 50% 35%, var(--mat) 0 7px, transparent 8px),
    linear-gradient(135deg, var(--mustard), var(--rose));
}

.gift-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.gift-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.personal-section {
  padding-top: 0;
}

.personal-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(36, 33, 31, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.78)),
    repeating-linear-gradient(135deg, rgba(120, 184, 187, 0.16) 0 12px, rgba(255, 240, 166, 0.2) 12px 24px, rgba(242, 154, 180, 0.16) 24px 36px);
  box-shadow: var(--small-shadow);
}

.personal-note h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.personal-copy {
  display: grid;
  gap: 14px;
}

.personal-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  line-height: 1.72;
}

.personal-photos {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-rows: repeat(3, 86px);
  gap: 10px;
  width: min(100%, 470px);
  margin-top: 8px;
  padding-top: 4px;
}

.personal-photos img {
  width: 100%;
  height: 100%;
  min-height: 70px;
  border: 6px solid var(--mat);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10px 10px, rgba(239, 189, 73, 0.18) 0 3px, transparent 4px) 0 0 / 24px 24px,
    var(--mat);
  box-shadow: 0 8px 18px rgba(58, 45, 32, 0.14);
  object-fit: contain;
}

.personal-photos img:first-child {
  grid-row: span 3;
  min-height: 278px;
  background: var(--mat);
  object-fit: cover;
  object-position: 50% 36%;
  transform: rotate(-1.4deg);
}

.personal-photos img:nth-child(2) {
  transform: rotate(2deg);
}

.personal-photos img:nth-child(3) {
  transform: rotate(-1deg);
}

.personal-photos img:nth-child(4) {
  transform: rotate(1.2deg);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(36, 33, 31, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.7)),
    var(--butter);
  cursor: pointer;
  font-family: var(--font-typewriter);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.filter-button:nth-child(3n+2) {
  box-shadow: inset 0 -4px rgba(242, 154, 180, 0.58);
}

.filter-button:nth-child(3n+3) {
  box-shadow: inset 0 -4px rgba(120, 184, 187, 0.58);
}

.filter-button:nth-child(3n+4) {
  box-shadow: inset 0 -4px rgba(239, 189, 73, 0.64);
}

.filter-button[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--frame);
  background: var(--mat);
  box-shadow: inset 0 -5px var(--teal), 0 10px 22px rgba(58, 45, 32, 0.13);
}

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

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.portfolio-toggle {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--frame);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.8)),
    var(--butter);
  box-shadow: inset 0 -5px var(--coral), var(--small-shadow);
  cursor: pointer;
  font-family: var(--font-typewriter);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.portfolio-toggle:hover,
.portfolio-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: inset 0 -5px var(--teal), var(--small-shadow);
  outline: none;
}

.portfolio-toggle[hidden] {
  display: none;
}

.art-card {
  --card-accent: var(--teal);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(36, 33, 31, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  background: var(--mat);
  box-shadow: 0 10px 24px rgba(58, 45, 32, 0.08);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.art-card[hidden] {
  display: none;
}

.art-card__image {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  padding: 12px;
  background:
    radial-gradient(circle at 14px 14px, rgba(134, 173, 177, 0.28) 0 4px, transparent 5px) 0 0 / 32px 32px,
    var(--paper-deep);
}

.art-card:nth-child(6n+1) {
  --card-accent: var(--coral);
}

.art-card:nth-child(6n+1) .art-card__image {
  background:
    radial-gradient(circle at 20px 18px, var(--rose) 0 5px, transparent 6px) 0 0 / 46px 46px,
    radial-gradient(circle at 34px 32px, var(--mustard) 0 4px, transparent 5px) 0 0 / 46px 46px,
    #dff1ee;
}

.art-card:nth-child(6n+2) {
  --card-accent: var(--mustard);
}

.art-card:nth-child(6n+2) .art-card__image {
  background:
    radial-gradient(ellipse at 24px 24px, rgba(169, 189, 134, 0.75) 0 13px, transparent 14px) 0 0 / 58px 58px,
    #fff6df;
}

.art-card:nth-child(6n+3) {
  --card-accent: var(--teal-deep);
}

.art-card:nth-child(6n+3) .art-card__image {
  background:
    radial-gradient(circle at 16px 16px, rgba(255, 253, 248, 0.46) 0 4px, transparent 5px) 0 0 / 30px 30px,
    #8fc0c3;
}

.art-card:nth-child(6n+4) {
  --card-accent: var(--rose);
}

.art-card:nth-child(6n+4) .art-card__image {
  background:
    linear-gradient(135deg, rgba(239, 189, 73, 0.46) 0 18%, transparent 18% 28%, rgba(120, 184, 187, 0.48) 28% 46%, transparent 46% 56%, rgba(242, 154, 180, 0.5) 56% 76%, transparent 76%),
    #fff7e6;
}

.art-card:nth-child(6n+5) {
  --card-accent: var(--sage);
}

.art-card:nth-child(6n+5) .art-card__image {
  background:
    radial-gradient(circle at 28px 22px, rgba(237, 105, 96, 0.45) 0 5px, transparent 6px) 0 0 / 64px 64px,
    radial-gradient(ellipse at 18px 42px, rgba(169, 189, 134, 0.78) 0 14px, transparent 15px) 0 0 / 64px 64px,
    #edf5dd;
}

.art-card:nth-child(6n+6) {
  --card-accent: var(--blue);
}

.art-card:nth-child(6n+6) .art-card__image {
  background:
    repeating-linear-gradient(0deg, rgba(237, 105, 96, 0.8) 0 8px, rgba(255, 253, 248, 0.82) 8px 16px, rgba(114, 153, 189, 0.55) 16px 28px),
    #dcebf2;
}

.art-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 7px solid #fefcf8;
  border-radius: 4px;
  box-shadow: 0 14px 24px rgba(36, 33, 31, 0.18);
  background: var(--mat);
}

.art-card__copy {
  padding: 16px;
  border-top: 6px solid var(--card-accent);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.86)),
    var(--butter);
}

.art-card__copy strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-typewriter);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.25;
}

.art-card__copy span {
  display: block;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 0.92rem;
  line-height: 1.35;
}

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

.process-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(36, 33, 31, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 22px 22px, rgba(242, 154, 180, 0.28) 0 5px, transparent 6px) 0 0 / 58px 58px,
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.8)),
    var(--mint);
  box-shadow: var(--small-shadow);
}

.process-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--rose) 0 42px, var(--teal) 42px 84px, var(--mustard) 84px 126px, var(--coral) 126px 168px);
}

.process-panel h2 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--frame);
  border-radius: 50%;
  background: var(--mustard);
  font-family: var(--font-typewriter);
  font-weight: 700;
  line-height: 1;
}

.steps li:nth-child(2) .step-number {
  background: var(--teal);
}

.steps li:nth-child(3) .step-number {
  background: var(--rose);
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  line-height: 1.62;
}

.order-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 14px;
  border: 1px dashed rgba(36, 33, 31, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.74);
}

.order-contact p {
  margin: 0;
  color: var(--muted);
}

.order-contact span {
  color: var(--ink);
  font-family: var(--font-typewriter);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.process-gallery {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.process-gallery img {
  width: 100%;
  border: 10px solid var(--mat);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.process-gallery img:first-child {
  border-color: #fff8de;
}

.process-gallery img:last-child {
  border-color: #e4f3ef;
}

.process-gallery img:first-child {
  aspect-ratio: 1 / 1.18;
}

.process-gallery img:last-child {
  aspect-ratio: 1 / 1.35;
  transform: translateY(28px) rotate(2deg);
}

.cta {
  position: relative;
  padding: 48px;
  border: 1px solid rgba(36, 33, 31, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 26px 26px, rgba(255, 253, 248, 0.36) 0 6px, transparent 7px) 0 0 / 58px 58px,
    radial-gradient(circle at 80% 18%, rgba(237, 105, 96, 0.45), transparent 16rem),
    linear-gradient(135deg, var(--teal) 0 28%, var(--mustard) 28% 52%, var(--rose) 52% 76%, var(--mint) 76%),
    var(--teal);
  box-shadow: var(--shadow);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 2px dashed rgba(255, 253, 248, 0.76);
  border-radius: var(--radius);
}

.cta::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 32px;
  width: min(300px, 45%);
  height: 50px;
  pointer-events: none;
  opacity: 0.58;
  background:
    linear-gradient(var(--frame), var(--frame)) 0 13px / 100% 2px no-repeat,
    linear-gradient(145deg, var(--mat) 0 50%, transparent 51%) 0 15px / 42px 34px repeat-x,
    linear-gradient(215deg, var(--coral) 0 50%, transparent 51%) 21px 15px / 42px 34px repeat-x,
    linear-gradient(145deg, var(--teal-deep) 0 50%, transparent 51%) 42px 15px / 42px 34px repeat-x;
  transform: rotate(3deg);
}

.cta-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 12px;
  font-size: 2.45rem;
}

.cta p {
  max-width: 62ch;
  margin-bottom: 22px;
  color: rgba(36, 33, 31, 0.82);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.62;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

footer {
  padding: 36px 0 48px;
  color: var(--muted);
  font-family: var(--font-signature);
}

.footer-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(36, 33, 31, 0.14);
  padding-top: 22px;
}

.dialog {
  width: min(980px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--mat);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.dialog::backdrop {
  background: rgba(36, 33, 31, 0.68);
  backdrop-filter: blur(4px);
}

.dialog-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  max-height: min(86vh, 820px);
}

.dialog-image-wrap {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 14px 14px, rgba(134, 173, 177, 0.24) 0 4px, transparent 5px) 0 0 / 34px 34px,
    #f3eadf;
  overflow: auto;
}

.dialog-image-wrap img {
  max-height: calc(86vh - 44px);
  border: 10px solid var(--mat);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
  background: var(--mat);
}

.dialog-copy {
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 22px;
  border-left: 1px solid rgba(36, 33, 31, 0.12);
}

.dialog-copy h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.dialog-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  line-height: 1.58;
}

.close-button {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--frame);
  border-radius: var(--radius);
  color: var(--mat);
  background: var(--frame);
  cursor: pointer;
  font-family: var(--font-typewriter);
  font-size: 1rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (min-width: 880px) {
  h1 {
    font-size: 4.8rem;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-gallery {
    min-height: 560px;
  }

  .section-heading,
  .process,
  .personal-note {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav-inner {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: stretch;
  }

  .nav-links a {
    flex: 1 1 auto;
  }

  h1 {
    font-size: 3rem;
  }

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

  .hero-piece-main {
    width: 64%;
    top: 18px;
    left: 18%;
  }

  .hero-piece-left {
    width: 36%;
    top: 132px;
    left: 2%;
  }

  .hero-piece-right {
    width: 34%;
    top: 112px;
    right: 2%;
  }

  .hero-piece-wide {
    width: 48%;
    right: 8%;
    bottom: 12px;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading h2,
  .personal-note h2,
  .process-panel h2,
  .cta h2 {
    font-size: 2rem;
  }

  .portfolio-grid,
  .gift-grid,
  .process-gallery {
    grid-template-columns: 1fr;
  }

  .personal-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 150px);
    width: min(100%, 480px);
  }

  .personal-photos img,
  .personal-photos img:first-child {
    grid-row: auto;
    min-height: 150px;
    object-fit: contain;
  }

  .process-gallery img:last-child {
    transform: none;
  }

  .cta {
    padding: 28px;
  }

  .dialog-body {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }

  .dialog-copy {
    border-left: 0;
    border-top: 1px solid rgba(36, 33, 31, 0.12);
  }
}

@media (max-width: 480px) {
  .nav-links a,
  .button-link {
    width: 100%;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-gallery {
    min-height: 430px;
  }

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

  .frame-card::before {
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.78), inset 0 0 28px rgba(36, 33, 31, 0.15);
  }

  .frame-card img {
    padding: 8px;
  }

  .hero-piece-main {
    width: 70%;
    top: 8px;
    left: 15%;
  }

  .hero-piece-left,
  .hero-piece-right {
    top: 118px;
  }

  .hero-piece-wide {
    width: 58%;
    right: 2%;
    bottom: 10px;
  }

  .filter-button {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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