
:root {
  --bg: #151006;
  --bg-deep: #080603;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.16);
  --text: #fff8e8;
  --muted: rgba(255, 248, 232, 0.76);
  --soft: rgba(255, 248, 232, 0.54);
  --magenta: #b65b08;
  --violet: #7e5200;
  --pink: #ffb32b;
  --red: #ff6a1f;
  --gold: #ffd56b;
  --shadow: 10px 10px 0 rgba(0, 0, 0, 0.30);
  --radius: 0px;
  --radius-sm: 0px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 106, 31, 0.22), transparent 26rem),
    radial-gradient(circle at 85% 0%, rgba(255, 184, 46, 0.28), transparent 32rem),
    radial-gradient(circle at 70% 82%, rgba(255, 179, 43, 0.18), transparent 30rem),
    linear-gradient(135deg, var(--bg-deep), var(--bg) 45%, #241405);
  font-family: Consolas, "Liberation Mono", "Courier New", monospace;
  line-height: 1.8;
  overflow-x: hidden;
}

body::selection {
  background: var(--pink);
  color: #1b1004;
}

.mosaic-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: 0.55;
  background:
    linear-gradient(115deg, transparent 0 12%, rgba(255,255,255,.05) 12% 13%, transparent 13% 33%, rgba(255, 179, 43, .08) 33% 35%, transparent 35%),
    linear-gradient(24deg, transparent 0 20%, rgba(182, 91, 8, .18) 20% 21%, transparent 21% 52%, rgba(126, 82, 0, .15) 52% 54%, transparent 54%),
    conic-gradient(from 190deg at 25% 50%, rgba(255, 106, 31, .12), rgba(126, 82, 0, .18), transparent, rgba(255, 179, 43, .12));
  filter: blur(16px) saturate(1.3);
  transform: scale(1.08);
}

.brush {
  position: fixed;
  z-index: -2;
  pointer-events: none;
  width: 42rem;
  height: 12rem;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 106, 31, .05), rgba(255, 179, 43, .16), rgba(126, 82, 0, .05));
  filter: blur(6px);
  opacity: 0.8;
}

.brush-one {
  left: -12rem;
  top: 26rem;
  transform: rotate(-18deg);
}

.brush-two {
  right: -14rem;
  top: 8rem;
  transform: rotate(22deg);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: .8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 1rem;
  z-index: 50;
  background: rgba(18, 11, 4, 0.66);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: fit-content;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0;
  font-weight: 900;
  letter-spacing: -.05em;
  background:
    radial-gradient(circle at 30% 22%, #ffe082, transparent 30%),
    linear-gradient(135deg, var(--red), var(--magenta), var(--violet));
  box-shadow: 0 10px 30px rgba(255, 106, 31, .2);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: .72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  border-radius: 0;
  color: var(--muted);
  padding: .7rem .9rem;
  text-decoration: none;
  transition: .2s ease;
  font-size: .92rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .1);
}

.nav-toggle {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  border-radius: 0;
  width: 3rem;
  height: 3rem;
  padding: .72rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 0;
}

main {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0 2rem;
}

section {
  margin: 0 0 4.5rem;
}

.hero {
  min-height: 68vh;
  align-items: center;
}

.split,
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(1.25rem, 4vw, 4rem);
}

.page-hero {
  max-width: 920px;
  padding-top: 2rem;
}

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

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 9vw, 7.8rem);
  line-height: .86;
  letter-spacing: -.075em;
  margin-bottom: 1.2rem;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 7vw, 6rem);
}

h2 {
 /* font-size: clamp(1.7rem, 4vw, 3.4rem); */
  line-height: .96;
  letter-spacing: -.045em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: .7rem;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 64ch;
  color: rgba(255, 248, 232, .84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.eyebrow {
  color: var(--pink);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
}

.button-row,
.footer-links,
.identity-card {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.btn,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  min-height: 3rem;
  padding: .85rem 1.15rem;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover,
.filter:hover,
.scroll-btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #1b1004;
  background: linear-gradient(135deg, #fff7d6, #ffb83d 44%, #ff6a1f);
  box-shadow: 0 18px 40px rgba(255, 106, 31, .22);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, .08);
}

.glass-card,
.hero-panel,
.info-panel,
.cta-panel,
.note-banner,
.table-card,
.template-card,
.contact-card,
.mini-card,
.term-card,
.price-card,
.feature-card,
.process-card,
.portfolio-card {
  position: relative;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(26, 16, 5, .65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.glass-card::before,
.price-card::before,
.feature-card::before,
.term-card::before,
.contact-card::before,
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 35%, rgba(255, 179, 43, .12));
  opacity: .55;
}

.hero-panel {
  border-radius: 0;
  padding: 1rem;
  overflow: hidden;
}

.avatar {
  display: block;
  width: 100%;
  border-radius: 0;
  margin-bottom: 1rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.identity-card {
  margin-bottom: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  padding: .36rem .65rem;
  color: rgba(255, 248, 232, .84);
  background: rgba(255,255,255,.07);
  font-size: .82rem;
  font-weight: 750;
}

.large-copy {
  border-radius: 0;
  padding: clamp(1.2rem, 4vw, 2.4rem);
}

.large-copy p {
  font-size: 1.08rem;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading {
  max-width: 620px;
}

.showcase,
.scroll-section {
  overflow: visible;
}

.scroll-shell {
  position: relative;
  width: min(100%, 1120px);
  margin: 1.5rem auto 0;
}

.snap-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 32%);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 1rem;
  padding: 1rem .25rem 1.5rem;
  scrollbar-width: thin;
}

.snap-row > * {
  scroll-snap-align: center;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(19, 12, 5, .82);
  backdrop-filter: blur(16px);
  font-size: 1.7rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.scroll-btn.left { left: -.7rem; }
.scroll-btn.right { right: -.7rem; }

.feature-card,
.process-card {
  min-height: 260px;
  border-radius: 0;
  padding: 1.3rem;
  overflow: hidden;
}

.feature-card.tall {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card::after,
.process-card::after,
.price-card::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -5rem;
  top: -5rem;
  border-radius: 0;
  background: radial-gradient(circle, rgba(255, 179, 43, .28), rgba(126, 82, 0, .04) 68%);
  filter: blur(2px);
}

.card-number,
.process-card span {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 0;
  padding: clamp(1.3rem, 4vw, 2.5rem);
}

.note-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  border-radius: 0;
  padding: 1rem 1.2rem;
}

.note-banner span {
  color: var(--muted);
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter {
  color: var(--text);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
}

.filter.active {
  background: linear-gradient(135deg, rgba(255,179,43,.28), rgba(255,63,95,.2));
  border-color: rgba(255, 179, 43, .55);
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
}

.four-by-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-card {
  border-radius: 0;
  overflow: hidden;
  transform-origin: center;
  transition: .25s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(255,179,43,.42);
}

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

.portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portfolio-meta {
  padding: .9rem;
  display: grid;
}

.portfolio-meta span {
  font-weight: 900;
}

.portfolio-meta small {
  color: var(--soft);
}

.availability-grid,
.contact-grid,
.terms-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.availability-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.mini-card,
.term-card,
.contact-card,
.price-card {
  border-radius: 0;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  overflow: hidden;
}

.pricing-grid {
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  margin-top: 1.5rem;
}

.price-card {
  min-height: clamp(420px, 72vh, 680px);
  display: grid;
  align-content: center;
  padding: clamp(2rem, 7vw, 5rem);
}

.price-card h2 {
  max-width: 9ch;
  font-size: clamp(3rem, 9vw, 7.2rem);
}

.price-card .pill {
  width: fit-content;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.price-card p:not(.price),
.price-card ul {
  max-width: 58ch;
}

.price-card ul {
  display: grid;
  gap: .55rem;
}

.price-card.highlighted {
  border-color: rgba(179, 43, 43, .6);
  background:
    linear-gradient(135deg, rgba(179, 43, 43, .20), rgba(255,255,255,.05)),
    rgba(34, 18, 4, .76);
}

.price {
  color: var(--text);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: .9;
  letter-spacing: -.05em;
  font-weight: 950;
  margin: 1rem 0;
}

.price-card ul {
  padding-left: 1.05rem;
  color: var(--muted);
}

.table-card {
  border-radius: 0;
  padding: .8rem;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.row:last-child {
  border-bottom: 0;
}

.row span {
  color: var(--muted);
  text-align: right;
}

.process-card {
  min-height: 220px;
}

.terms-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.contact-card.featured {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,179,43,.16), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(26, 16, 5, .7);
}

.link-stack {
  display: grid;
  gap: .7rem;
}

.link-stack a {
  display: flex;
  justify-content: space-between;
  border-radius: 0;
  padding: .75rem .9rem;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  text-decoration: none;
}

.link-stack a:hover {
  color: var(--text);
  border-color: rgba(255,179,43,.4);
}

.template-card {
  border-radius: 0;
  padding: 1rem;
}

pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: rgba(255,248,232,.82);
  font: 500 .95rem/1.6 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  padding: 1rem;
}

.footer-card p,
.copyright {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.copyright {
  padding: 1rem;
  color: var(--soft);
  font-size: .9rem;
}



/* Sharper visual pass: more angular cards, cleaner artwork slots. */
.site-header,
.glass-card,
.hero-panel,
.info-panel,
.cta-panel,
.note-banner,
.table-card,
.template-card,
.contact-card,
.mini-card,
.term-card,
.price-card,
.feature-card,
.process-card,
.portfolio-card,
.footer-card {
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn,
.filter,
.pill,
.site-nav a,
.link-stack a,
.scroll-btn,
.nav-toggle {
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.portfolio-card::before {
  display: none;
}

.portfolio-card img {
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.portfolio-card:hover {
  transform: translateY(-3px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1050px) {
  .four-by-four,
  .pricing-grid,
  .terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .availability-grid,
  .split,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .snap-row {
    grid-auto-columns: minmax(260px, 46%);
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 0;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .5rem);
    display: none;
    grid-template-columns: 1fr;
    padding: .7rem;
    border: 1px solid var(--border);
    border-radius: 0;
    background: rgba(18, 11, 4, .92);
    backdrop-filter: blur(22px);
  }

  .site-header.nav-open .site-nav {
    display: grid;
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 16vw, 5rem);
  }

  main {
    padding-top: 3rem;
  }

  .hero {
    min-height: auto;
  }

  .snap-row {
    grid-auto-columns: minmax(245px, 84%);
  }

  .scroll-btn {
    display: none;
  }

  .four-by-four,
  .pricing-grid,
  .terms-grid,
  .availability-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .footer-card,
  .row {
    flex-direction: column;
    align-items: flex-start;
  }

  .row span {
    text-align: left;
  }
}

/* Terms boundaries: open two-column list, no cards. */
.draw-boundaries {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 5vw, 5rem);
  padding: clamp(1.2rem, 4vw, 2.2rem) 0;
  isolation: isolate;
}

.draw-boundaries::before {
  content: "";
  position: absolute;
  inset: -1rem -2rem;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(30, 214, 108, .12), transparent 43%, transparent 57%, rgba(255, 106, 31, .14)),
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 55%);
  filter: blur(.2px);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.draw-column {
  padding: clamp(.75rem, 2vw, 1.2rem) 0;
}

.draw-column h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 6vw, 5rem);
}

.draw-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 248, 232, .78);
}

.draw-column li {
  position: relative;
  margin: 0 0 1rem;
  padding-left: 1.45rem;
}

.draw-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: .55rem;
  height: .55rem;
  clip-path: polygon(0 0, 100% 0%, % 100%, 12% 78%);
}

.will-draw h2,
.will-draw .eyebrow {
  color: #ffe066;
}

.will-draw li::before {
  background: #ffe066;
  box-shadow: 0 0 22px rgba(87, 240, 140, .45);
}

.will-not-draw {
  text-align: right;
}

.will-not-draw h2,
.will-not-draw .eyebrow {
  color: var(--red);
}

.will-not-draw li {
  padding-left: 0;
  padding-right: 1.45rem;
}

.will-not-draw li::before {
  left: auto;
  right: 0;
  background: var(--red);
  box-shadow: 0 0 22px rgba(255, 106, 31, .5);
}

.boundary-note {
  grid-column: 1 / -1;
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 248, 232, .84);
  font-weight: 700;
}

@media (max-width: 760px) {
  .draw-boundaries {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .draw-boundaries::before {
    background:
      linear-gradient(180deg, rgba(30, 214, 108, .12), transparent 47%, rgba(255, 106, 31, .14)),
      linear-gradient(135deg, rgba(255,255,255,.035), transparent 55%);
  }

  .will-not-draw {
    text-align: left;
  }

  .will-not-draw li {
    padding-left: 1.45rem;
    padding-right: 0;
  }

  .will-not-draw li::before {
    left: 0;
    right: auto;
  }
}


/* Hard-edged pass: absolutely no rounded corners anywhere. */
*,
*::before,
*::after {
  border-radius: 0;
}

/* Commission pricing should stay stacked and oversized at every screen width. */
.pricing-grid {
  grid-template-columns: 1fr !important;
}

/* Make the site truly square-edged rather than polished/soft. */
.site-header,
.glass-card,
.hero-panel,
.info-panel,
.cta-panel,
.note-banner,
.table-card,
.template-card,
.contact-card,
.mini-card,
.term-card,
.price-card,
.feature-card,
.process-card,
.portfolio-card,
.footer-card,
.btn,
.filter,
.pill,
.site-nav a,
.link-stack a,
.scroll-btn,
.nav-toggle {
  clip-path: none !important;
}


/* 08 layout pass: wider page-scaled info areas, no fixed carousel boxes. */
.about-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.4rem);
  width: 100%;
}

.about-wide .section-heading,
.art-options-wide .section-heading {
  max-width: none;
  width: 100%;
}

.about-wide .info-panel {
  width: 100%;
  max-width: none;
}

.art-options-wide {
  width: 100%;
}

.feature-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-grid .feature-card {
  min-width: 0;
  width: 100%;
}

/* Commission process as an actual step-by-step guide with arrows. */
.process-guide-section {
  width: 100%;
}

.process-guide {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1.7rem, 2.8vw, 2.6rem);
  align-items: stretch;
  margin-top: 1.5rem;
}

.process-guide .process-card {
  min-height: 230px;
  overflow: visible;
  padding: clamp(1rem, 1.4vw, 1.35rem);
}

.process-guide .process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * clamp(1.7rem, 2.8vw, 2.6rem));
  top: 50%;
  transform: translate(50%, -50%);
  width: auto;
  height: auto;
  background: none;
  filter: none;
  color: var(--pink);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 950;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, .35);
  z-index: 5;
}

.process-guide .process-card h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.process-guide .process-card p {
  font-size: .92rem;
}

/* Only the mature-work notice remains under the portfolio gallery. */
.availability-grid.mature-only {
  grid-template-columns: 1fr;
  width: 100%;
}

.availability-grid.mature-only .mini-card {
  width: 100%;
}

body[data-page="portfolio"] .page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
}

@media (max-width: 1180px) {
  .process-guide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-guide .process-card:nth-child(3)::after {
    content: "↓";
    right: 50%;
    top: calc(100% + .85rem);
    transform: translate(50%, -50%);
  }
}

@media (max-width: 760px) {
  .feature-grid,
  .process-guide {
    grid-template-columns: 1fr;
  }

  .process-guide .process-card:not(:last-child)::after,
  .process-guide .process-card:nth-child(3)::after {
    content: "";
    right: 50%;
    top: calc(100% + .85rem);
    transform: translate(50%, -50%);
  }
}

.process-guide .process-card:last-child::after {
  display: none;
}


/* 09 palette + portfolio pass: orange/yellow focus and 30-item, three-column gallery. */
:root {
  --bg: #151006;
  --bg-deep: #080603;
  --text: #fff8e8;
  --muted: rgba(255, 248, 232, 0.76);
  --soft: rgba(255, 248, 232, 0.54);
  --magenta: #b65b08;
  --violet: #7e5200;
  --pink: #ffb32b;
  --red: #ff6a1f;
  --gold: #ffd56b;
}

body {
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 106, 31, 0.25), transparent 26rem),
    radial-gradient(circle at 85% 0%, rgba(255, 184, 46, 0.26), transparent 32rem),
    radial-gradient(circle at 70% 82%, rgba(255, 179, 43, 0.18), transparent 30rem),
    linear-gradient(135deg, var(--bg-deep), var(--bg) 45%, #241405);
}

.mosaic-bg {
  background:
    linear-gradient(115deg, transparent 0 12%, rgba(255,255,255,.05) 12% 13%, transparent 13% 33%, rgba(255, 179, 43, .10) 33% 35%, transparent 35%),
    linear-gradient(24deg, transparent 0 20%, rgba(182, 91, 8, .20) 20% 21%, transparent 21% 52%, rgba(126, 82, 0, .18) 52% 54%, transparent 54%),
    conic-gradient(from 190deg at 25% 50%, rgba(255, 106, 31, .16), rgba(255, 184, 46, .18), transparent, rgba(255, 179, 43, .14));
}

.brush {
  background: linear-gradient(90deg, rgba(255, 106, 31, .08), rgba(255, 179, 43, .18), rgba(126, 82, 0, .06));
}

.btn.primary {
  background: linear-gradient(135deg, #fff7d6, #ffb83d 44%, #ff6a1f);
  box-shadow: 0 18px 40px rgba(255, 106, 31, .24);
}

.filter.active,
.price-card.highlighted {
  border-color: rgba(255, 179, 43, .58);
}

.filter.active {
  background: linear-gradient(135deg, rgba(255,179,43,.28), rgba(255,106,31,.22));
}

.glass-card::before,
.price-card::before,
.feature-card::before,
.term-card::before,
.contact-card::before {
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 35%, rgba(255, 179, 43, .12));
}

.term-card.highlighted {
  border-color: rgba(255, 179, 43, .6);
  background:
    linear-gradient(135deg, rgba(255, 179, 43, .20), rgba(255,255,255,.05)),
    rgba(34, 18, 4, .76);
}

.feature-card::after,
.process-card::after,
.price-card::after {
  background: radial-gradient(circle, rgba(255, 179, 43, .30), rgba(126, 82, 0, .05) 68%);
}

.contact-card.featured {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,179,43,.16), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(26, 16, 5, .7);
}

.portfolio-grid.three-column-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.will-draw h2,
.will-draw .eyebrow {
  color: #57f08c;
}

.will-draw li::before {
  background: #57f08c;
  box-shadow: 0 0 22px rgba(87, 240, 140, .45);
}

@media (max-width: 1050px) {
  .portfolio-grid.three-column-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .portfolio-grid.three-column-gallery {
    grid-template-columns: 1fr;
  }
}
