/* [project]/app/globals.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-ink: #17211d;
    --color-muted: #59685e;
    --color-paper: #f4f1e8;
    --color-surface: #fffdf6;
    --color-line: #d9d0bd;
    --color-moss: #496f2f;
    --color-moss-strong: #244228;
    --color-forge: #bd6236;
    --color-petal: #c45b8c;
    --color-graphite: #1a1d1a;
    --radius-soft: 8px;
    --radius-card: 8px;
    --shadow-soft: 0 18px 46px #1e231924;
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .invisible {
    visibility: hidden;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .hidden {
    display: none;
  }
}

:root {
  --font-body: var(--font-sans);
  --page-bg: var(--color-paper);
  --page-text: var(--color-ink);
  --text-muted: var(--color-muted);
  --surface: var(--color-surface);
  --line: var(--color-line);
  --brand: var(--color-moss);
  --brand-strong: var(--color-moss-strong);
  --accent-warm: var(--color-forge);
  --accent-petal: var(--color-petal);
  --graphite: var(--color-graphite);
  --radius-ui: var(--radius-soft);
  --radius-panel: var(--radius-card);
  --shadow-panel: var(--shadow-soft);
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  color: var(--page-text);
  background: var(--page-bg);
  font-family: var(--font-body);
  text-rendering: geometricprecision;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: .62;
}

code {
  background: var(--brand);
  border-radius: 7px;
  padding: .12rem .38rem;
}

@supports (color: color-mix(in lab, red, red)) {
  code {
    background: color-mix(in srgb, var(--brand) 11%, transparent);
  }
}

:focus-visible {
  outline: 3px solid var(--brand);
}

@supports (color: color-mix(in lab, red, red)) {
  :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--brand) 34%, transparent);
  }
}

:focus-visible {
  outline-offset: 3px;
}

.paint-forge {
  background: linear-gradient(180deg, #2442280f, transparent 420px), var(--page-bg);
  min-height: 100vh;
  overflow-x: clip;
}

.section-shell {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.site-header {
  z-index: 10;
  color: #fffdf6;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: linear-gradient(90deg, #080f0be6, #080f0bb3), #080f0bc2;
  border: 1px solid #fffdf63d;
  border-radius: 18px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  padding: 14px 18px;
  display: grid;
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  box-shadow: 0 18px 50px #0003;
}

.brand-mark, .footer-brand {
  align-items: center;
  gap: 11px;
  min-width: 0;
  display: inline-flex;
}

.brand-logo-wrap {
  background: #fffdf6f5;
  border: 1px solid #fffdf673;
  border-radius: 12px;
  flex: none;
  place-items: center;
  width: 72px;
  height: 82px;
  display: grid;
  overflow: hidden;
  box-shadow: 0 10px 24px #0000002e;
}

.brand-logo {
  object-fit: contain;
  width: 60px;
  height: 68px;
}

.brand-copy strong, .brand-copy small, .footer-brand strong, .footer-brand small {
  display: block;
}

.brand-copy strong {
  font-size: 1.12rem;
  line-height: 1.1;
}

.brand-copy small {
  color: #fffdf6b8;
  margin-top: 5px;
  font-size: .78rem;
  line-height: 1.2;
}

.site-nav {
  color: #fffdf6cc;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: .88rem;
  font-weight: 800;
  display: flex;
}

.site-nav a, .header-shop-link {
  transition: color .16s, background .16s, border-color .16s, transform .16s;
}

.site-nav a:hover {
  color: #fffdf6;
}

.header-shop-link {
  background: #0a120e42;
  border: 1px solid #fffdf66b;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  font-size: .86rem;
  font-weight: 900;
  display: inline-flex;
}

.header-shop-link:hover {
  background: #fffdf621;
  border-color: #fffdf6d1;
  transform: translateY(-1px);
}

.hero-section {
  color: #fffdf6;
  isolation: isolate;
  align-items: end;
  min-height: 100svh;
  padding: 158px 0 58px;
  display: grid;
  position: relative;
}

.hero-image, .hero-overlay {
  z-index: -2;
  position: absolute;
  inset: 0;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, #080f0beb 0%, #080f0bad 46%, #080f0b33 100%), linear-gradient(#080f0b29 0%, #080f0bc7 100%);
}

.hero-content {
  gap: 16px;
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  display: grid;
}

.eyebrow {
  border: 1px solid;
  width: fit-content;
  margin: 0;
}

@supports (color: color-mix(in lab, red, red)) {
  .eyebrow {
    border: 1px solid color-mix(in srgb, currentColor 26%, transparent);
  }
}

.eyebrow {
  color: inherit;
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 11px;
}

@supports (color: color-mix(in lab, red, red)) {
  .eyebrow {
    background: color-mix(in srgb, var(--surface) 16%, transparent);
  }
}

.eyebrow {
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 900;
  line-height: 1;
}

.hero-content h1 {
  letter-spacing: -.055em;
  max-width: 720px;
  margin: 0;
  font-size: clamp(4.5rem, 11vw, 9rem);
  line-height: .84;
}

.hero-kicker {
  color: #fffdf6;
  max-width: 650px;
  margin: 2px 0 0;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero-lead {
  color: #fffdf6d6;
  max-width: 650px;
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.52;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 3px;
  display: flex;
}

.ui-button {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 900;
  line-height: 1;
  transition: transform .16s, border-color .16s, background .16s, color .16s;
  display: inline-flex;
}

.ui-button:hover {
  transform: translateY(-2px);
}

.ui-button-primary {
  color: #fffdf6;
  background: var(--accent-warm);
  box-shadow: 0 14px 30px #bd623647;
}

.ui-button-primary:hover {
  background: #a9502b;
}

.ui-button-secondary {
  color: #fffdf6;
  background: #fffdf617;
  border-color: #fffdf666;
}

.ui-button-secondary:hover {
  background: #fffdf629;
  border-color: #fffdf6b8;
}

.ui-button-dark {
  color: #fffdf6;
  background: var(--brand-strong);
}

.ui-button-dark:hover {
  background: var(--graphite);
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(700px, 100%);
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.proof-strip li {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #080f0b57;
  border: 1px solid #fffdf633;
  border-radius: 8px;
  gap: 2px;
  min-width: 0;
  padding: 9px 11px;
  display: grid;
}

.proof-strip strong {
  color: #fffdf6;
  font-size: .88rem;
}

.proof-strip span {
  color: #fffdf6b3;
  font-size: .72rem;
  line-height: 1.25;
}

.mascot-hero {
  width: min(370px, 27vw);
  color: var(--page-text);
  gap: 14px;
  display: grid;
  position: absolute;
  bottom: 48px;
  right: max(20px, 50vw - 590px);
}

.mascot-window {
  background: radial-gradient(circle at 50% 35%, #e0974633, #0000 50%), linear-gradient(#fffdf64d, #fffdf614), #1122194d;
  border: 1px solid #fffdf6b3;
  border-radius: 16px;
  height: min(54vh, 500px);
  min-height: min(54vh, 500px);
  position: relative;
  overflow: visible;
  box-shadow: 0 28px 76px #00000061, 0 0 0 1px #e0974624;
}

.mascot-window:before {
  content: "";
  border: 1px solid #fffdf642;
  border-radius: 11px;
  position: absolute;
  inset: 14px;
}

.mascot-hero img {
  z-index: 1;
  filter: drop-shadow(0 22px 24px #00000057);
  pointer-events: none;
  width: 105%;
  max-width: none;
  height: auto;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-48%);
}

.mascot-caption {
  box-shadow: var(--shadow-panel);
  background: #fffdf6f5;
  border: 1px solid #e097463d;
  border-radius: 12px;
  gap: 4px;
  padding: 16px 18px;
  display: grid;
}

.mascot-caption strong, .mascot-caption span {
  display: block;
}

.mascot-caption strong {
  font-size: 1.06rem;
}

.mascot-caption span {
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.35;
}

.family-band {
  color: #fffdf6;
  background: var(--graphite);
  padding-block: clamp(64px, 8vw, 94px);
}

.family-shell {
  gap: 30px;
  display: grid;
}

.family-intro {
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
  align-items: end;
  gap: 20px;
  display: grid;
}

.family-intro h2, .section-heading h2, .section-copy h2, .scene-heading h2, .range-shell h2, .final-cta h2 {
  color: var(--page-text);
  letter-spacing: -.045em;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .96;
}

.family-intro h2 {
  color: #fffdf6;
  max-width: 760px;
}

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

.family-link {
  color: #fffdf6;
  background: #fffdf60f;
  border: 1px solid #fffdf624;
  border-radius: 10px;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  padding: 19px;
  transition: transform .18s, border-color .18s, background .18s;
  display: grid;
}

.family-link:hover {
  background: #fffdf61a;
  border-color: #fffdf657;
  transform: translateY(-3px);
}

.family-link > svg {
  color: #b8d39e;
}

.family-count {
  color: #fffdf69e;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 900;
}

.family-link h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.15;
}

.family-link p {
  color: #fffdf6b3;
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
}

.family-cta {
  color: #fffdf6;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: .82rem;
  font-weight: 900;
  display: inline-flex;
}

.product-section {
  padding-block: clamp(74px, 9vw, 118px);
}

.product-shell {
  gap: 38px;
  display: grid;
}

.section-heading {
  gap: 18px;
  display: grid;
}

.product-heading {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
}

.product-heading > div {
  gap: 15px;
  display: grid;
}

.section-heading p, .section-copy p, .scene-heading p, .range-shell p, .product-card p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.62;
}

.product-heading > p {
  font-size: 1.03rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  display: grid;
}

.product-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 11px;
  min-width: 0;
  display: grid;
}

@supports (color: color-mix(in lab, red, red)) {
  .product-card {
    background: color-mix(in srgb, var(--surface) 95%, white);
  }
}

.product-card {
  transition: transform .18s, border-color .18s, box-shadow .18s;
  overflow: hidden;
  box-shadow: 0 8px 24px #1e23190d;
}

.product-card:hover {
  border-color: var(--brand);
}

@supports (color: color-mix(in lab, red, red)) {
  .product-card:hover {
    border-color: color-mix(in srgb, var(--brand) 42%, var(--line));
  }
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px #1e23191f;
}

.product-card-featured {
  border-color: var(--brand);
}

@supports (color: color-mix(in lab, red, red)) {
  .product-card-featured {
    border-color: color-mix(in srgb, var(--brand) 36%, var(--line));
  }
}

.product-media {
  aspect-ratio: 1;
  background: #f8f5ec;
  position: relative;
  overflow: hidden;
}

.product-media img {
  object-fit: cover;
  transition: transform .28s;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-pick {
  color: #fffdf6;
  background: #244228e6;
  border: 1px solid #fffdf6b3;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .72rem;
  font-weight: 900;
  position: absolute;
  bottom: 12px;
  left: 12px;
  box-shadow: 0 8px 18px #17211d2e;
}

.product-copy {
  align-content: start;
  gap: 12px;
  min-height: 292px;
  padding: 18px;
  display: grid;
}

.product-meta {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.product-meta span {
  color: var(--brand-strong);
  background: var(--brand);
  border-radius: 999px;
  padding: 6px 8px;
}

@supports (color: color-mix(in lab, red, red)) {
  .product-meta span {
    background: color-mix(in srgb, var(--brand) 9%, var(--surface));
  }
}

.product-meta span {
  font-size: .7rem;
  font-weight: 900;
}

.product-meta span:last-child {
  color: var(--text-muted);
  background: var(--graphite);
}

@supports (color: color-mix(in lab, red, red)) {
  .product-meta span:last-child {
    background: color-mix(in srgb, var(--graphite) 5%, var(--surface));
  }
}

.product-copy h3 {
  color: var(--page-text);
  letter-spacing: -.025em;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.product-copy p {
  font-size: .92rem;
}

.product-copy > a, .text-link {
  width: fit-content;
  color: var(--brand-strong);
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-size: .86rem;
  font-weight: 900;
  display: inline-flex;
}

.product-copy > a:hover, .text-link:hover {
  color: var(--accent-warm);
}

.scene-band {
  color: #fffdf6;
  background: linear-gradient(120deg, #244228fa, #1a1d1af5), url("/images/paint-forge-collections-real-01.webp") center / cover;
  padding-block: clamp(72px, 9vw, 112px);
}

.scene-shell {
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(32px, 7vw, 84px);
  display: grid;
}

.scene-heading {
  gap: 16px;
  display: grid;
}

.scene-heading h2, .scene-heading p {
  color: #fffdf6;
}

.scene-heading p {
  color: #fffdf6b8;
}

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

.scene-grid article {
  background: #fffdf612;
  border: 1px solid #fffdf626;
  border-radius: 10px;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 18px;
  display: grid;
}

.scene-grid svg {
  color: #b8d39e;
}

.scene-grid h3 {
  margin: 0;
  font-size: 1.18rem;
}

.scene-grid p {
  color: #fffdf6b8;
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
}

.scene-grid span {
  color: #fffdf6;
  background: #fffdf61c;
  border-radius: 999px;
  width: fit-content;
  margin-top: auto;
  padding: 6px 8px;
  font-size: .72rem;
  font-weight: 900;
}

.realizations-section {
  background: radial-gradient(circle at 8% 0%, #567c491f, transparent 30%), var(--page-bg);
  padding-block: clamp(78px, 9vw, 118px);
}

.realizations-shell {
  gap: clamp(30px, 4vw, 52px);
  display: grid;
}

.realizations-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  align-items: end;
  gap: clamp(28px, 6vw, 76px);
  display: grid;
}

.realizations-heading .section-copy {
  max-width: 720px;
}

.realizations-side {
  align-content: end;
  justify-items: start;
  gap: 12px;
  padding-bottom: 4px;
  display: grid;
}

.realizations-side .inline-tags {
  margin-top: 0;
}

.realization-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 22px;
  display: grid;
}

.realization-card {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--brand);
  min-width: 0;
  margin: 0;
  position: relative;
}

@supports (color: color-mix(in lab, red, red)) {
  .realization-card {
    border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
  }
}

.realization-card {
  background: var(--surface);
  isolation: isolate;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 18px 46px #1f2d1e29;
}

.realization-card:nth-child(2n) {
  transform: translateY(22px);
}

.realization-card:after {
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(#0000, #080f0bd1);
  position: absolute;
  inset: 38% 0 0;
}

.realization-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .22s;
  display: block;
}

.realization-card:hover img {
  transform: scale(1.025);
}

.realization-card figcaption {
  z-index: 2;
  color: #fffdf6;
  gap: 5px;
  padding: 22px 18px 17px;
  display: grid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.realization-card figcaption span {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .67rem;
  font-weight: 900;
}

.realization-card figcaption strong {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.14;
}

.mascot-section {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  padding-block: 12px clamp(76px, 9vw, 118px);
  display: grid;
}

.section-copy {
  gap: 16px;
  display: grid;
}

.section-copy > p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.03rem;
}

.inline-tags {
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
  display: flex;
}

.inline-tags span {
  border: 1px solid var(--line);
  color: var(--brand-strong);
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .78rem;
  font-weight: 900;
}

.text-link {
  margin-top: 8px;
}

.mascot-stage {
  isolation: isolate;
  justify-self: stretch;
  width: 100%;
  min-height: 560px;
  position: relative;
}

.mascot-stage:before {
  content: "";
  z-index: -1;
  background: radial-gradient(circle at 34% 24%, #e8c05c3d, #0000 34%), radial-gradient(circle at 64% 58%, #4d794433, #0000 42%);
  border-radius: 50%;
  position: absolute;
  inset: 11% 11% 5% 6%;
}

.stage-window {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf6f2, #f3ecd9b8), var(--surface);
  box-shadow: var(--shadow-panel);
  border-radius: 11px;
  position: absolute;
  overflow: visible;
}

.stage-window:before {
  content: "";
  border: 1px solid var(--brand);
  position: absolute;
  inset: 14px;
}

@supports (color: color-mix(in lab, red, red)) {
  .stage-window:before {
    border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
  }
}

.stage-window:before {
  border-radius: 8px;
}

.stage-window-main {
  aspect-ratio: .74;
  width: min(82%, 430px);
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.stage-mascot {
  z-index: 1;
  filter: drop-shadow(0 24px 26px #1f2d1e38);
  pointer-events: none;
  max-width: none;
  height: auto;
  position: absolute;
}

.stage-mascot-present {
  width: 124%;
  bottom: -5%;
  right: -12%;
}

.mascot-copy .ui-button {
  margin-top: 4px;
}

.tip-panel {
  border-left: 4px solid var(--accent-petal);
  background: var(--accent-petal);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  max-width: 660px;
  padding: 16px 18px;
  display: grid;
}

@supports (color: color-mix(in lab, red, red)) {
  .tip-panel {
    background: color-mix(in srgb, var(--accent-petal) 8%, var(--surface));
  }
}

.tip-panel svg {
  color: var(--accent-petal);
}

.tip-panel div {
  gap: 5px;
  display: grid;
}

.tip-panel strong {
  color: var(--page-text);
  text-transform: uppercase;
  font-size: .84rem;
}

.tip-panel p {
  color: var(--text-muted);
  font-size: .94rem;
}

.range-band {
  background: var(--brand);
  padding-block: clamp(64px, 8vw, 96px);
}

@supports (color: color-mix(in lab, red, red)) {
  .range-band {
    background: color-mix(in srgb, var(--brand) 8%, var(--surface));
  }
}

.range-shell {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
  display: grid;
}

.range-shell > div {
  gap: 15px;
  display: grid;
}

.range-shell ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.range-shell li {
  border: 1px solid var(--brand);
  align-items: center;
  gap: 9px;
  min-height: 48px;
  display: flex;
}

@supports (color: color-mix(in lab, red, red)) {
  .range-shell li {
    border: 1px solid color-mix(in srgb, var(--brand) 16%, var(--line));
  }
}

.range-shell li {
  color: var(--brand-strong);
  background: #fffdf6b3;
  border-radius: 8px;
  padding: 10px 11px;
  font-size: .82rem;
  font-weight: 900;
}

.range-shell li span {
  background: var(--accent-warm);
  border-radius: 50%;
  flex: none;
  width: 8px;
  height: 8px;
}

.final-cta {
  color: #fffdf6;
  background: linear-gradient(90deg, #1a1d1ae6, #1a1d1ab3), url("/images/paint-forge-realization-real-01.webp") center / cover;
  padding-block: clamp(66px, 9vw, 108px);
}

.final-cta-inner {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  display: flex;
}

.final-cta-inner > div {
  gap: 14px;
  display: grid;
}

.final-cta h2 {
  color: #fffdf6;
  max-width: 830px;
}

.final-cta .ui-button {
  flex: none;
}

.site-footer {
  color: #fffdf6b3;
  background: var(--graphite);
  padding-block: 28px;
}

.site-footer-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  display: grid;
}

.footer-brand img {
  object-fit: contain;
  background: #fffdf6;
  border-radius: 7px;
  width: 40px;
  height: 46px;
}

.footer-brand strong {
  color: #fffdf6;
  font-size: .94rem;
}

.footer-brand small {
  margin-top: 2px;
  font-size: .7rem;
}

.site-footer p {
  text-align: center;
  margin: 0;
  font-size: .82rem;
}

.site-footer-inner > a:last-child {
  color: #fffdf6;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 900;
  display: inline-flex;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    justify-content: flex-end;
    gap: 14px;
  }

  .hero-section {
    align-content: end;
    row-gap: 28px;
  }

  .mascot-hero {
    order: -1;
    grid-template-columns: 184px minmax(0, 1fr);
    align-items: end;
    width: min(100% - 40px, 640px);
    margin: 0 auto;
    position: relative;
    bottom: auto;
    right: auto;
  }

  .mascot-window {
    width: 184px;
    height: 220px;
    min-height: 0;
  }

  .mascot-hero img {
    width: 112%;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mascot-caption {
    margin-bottom: 10px;
  }

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

  .family-link {
    min-height: 225px;
  }

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

  .scene-shell, .mascot-section, .range-shell, .realizations-heading {
    grid-template-columns: 1fr;
  }

  .realizations-side {
    padding-bottom: 0;
  }

  .realization-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 0;
  }

  .realization-card:nth-child(2n) {
    transform: none;
  }

  .scene-heading {
    max-width: 760px;
  }

  .mascot-section .mascot-copy {
    order: -1;
  }

  .mascot-stage {
    max-width: 620px;
    min-height: 540px;
    margin-inline: auto;
  }

  .range-shell ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

  .product-heading, .family-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer-inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 720px) {
  .section-shell, .site-header, .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    border-radius: 14px;
    gap: 12px;
    padding: 10px 12px;
    top: 10px;
  }

  .brand-logo-wrap {
    border-radius: 10px;
    width: 56px;
    height: 64px;
  }

  .brand-logo {
    width: 46px;
    height: 53px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: .95rem;
  }

  .header-shop-link {
    min-height: 39px;
    padding: 0 12px;
    font-size: .8rem;
  }

  .hero-section {
    row-gap: 18px;
    min-height: auto;
    padding: 190px 0 34px;
  }

  .hero-overlay {
    background: linear-gradient(#080f0bb3 0%, #080f0bd6 52%, #080f0bf0 100%), linear-gradient(90deg, #080f0bc2, #080f0b61);
  }

  .hero-content {
    gap: 11px;
  }

  .hero-content h1 {
    font-size: clamp(3.7rem, 20vw, 5.2rem);
    line-height: .88;
  }

  .hero-kicker {
    font-size: 1.24rem;
  }

  .hero-lead {
    font-size: .94rem;
    line-height: 1.45;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    display: grid;
  }

  .ui-button {
    width: 100%;
    min-height: 45px;
    padding: 0 12px;
    font-size: .78rem;
  }

  .proof-strip {
    gap: 5px;
  }

  .proof-strip li {
    padding: 7px 8px;
  }

  .proof-strip strong {
    font-size: .78rem;
  }

  .proof-strip span {
    font-size: .64rem;
  }

  .mascot-hero {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
    width: min(100% - 28px, 380px);
    margin-bottom: 0;
  }

  .mascot-window {
    width: 132px;
    height: 154px;
  }

  .mascot-hero img {
    width: 114%;
    bottom: -12px;
  }

  .mascot-caption {
    margin-bottom: 8px;
    padding: 12px 13px;
  }

  .mascot-caption strong {
    font-size: .9rem;
  }

  .mascot-caption span {
    font-size: .76rem;
  }

  .family-grid, .product-grid, .scene-grid, .range-shell ul {
    grid-template-columns: 1fr;
  }

  .realizations-section {
    padding-block: 70px;
  }

  .realization-gallery {
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
    grid-template-columns: none;
    grid-auto-columns: min(78vw, 300px);
    grid-auto-flow: column;
    gap: 10px;
    margin-inline: -14px;
    padding: 0 14px 14px;
    overflow-x: auto;
  }

  .realization-gallery::-webkit-scrollbar {
    display: none;
  }

  .realization-card {
    scroll-snap-align: start;
  }

  .family-link, .product-copy {
    min-height: auto;
  }

  .product-copy > a {
    margin-top: 8px;
  }

  .scene-grid article {
    min-height: auto;
  }

  .mascot-stage {
    min-height: 440px;
  }

  .stage-window-main {
    width: min(82%, 320px);
    left: 50%;
  }

  .tip-panel {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a, .header-shop-link, .ui-button, .family-link, .product-card, .product-media img, .realization-card img {
    transition: none;
  }
}

.turnstile-widget {
  min-height: 65px;
}

.primary, .ghost {
  cursor: pointer;
  border: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.preview-access-page {
  background: linear-gradient(#112235 0%, #0d1c2d 54%, #0c1928 100%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 32px 20px;
  display: flex;
}

.preview-access-shell {
  width: min(100%, 430px);
}

.preview-access-card {
  color: #f4fbff;
  background: linear-gradient(#08121ef0, #08101beb);
  border: 1px solid #a7d4ff24;
  border-radius: 24px;
  gap: 16px;
  padding: 24px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 64px #03091185;
}

.preview-access-form {
  gap: 14px;
  display: grid;
}

.preview-access-field {
  gap: 10px;
  display: grid;
}

.preview-access-field input {
  color: #f4fbff;
  width: 100%;
  min-height: 60px;
  font: inherit;
  background: #091827d6;
  border: 1px solid #91c5ff29;
  border-radius: 16px;
  padding: 0 20px;
  font-size: 1.05rem;
  font-weight: 500;
}

.preview-access-field input::placeholder {
  color: #e2eeff6b;
}

.preview-access-field input:focus {
  border-color: #9dd2ff8c;
  outline: none;
  box-shadow: 0 0 0 4px #6fc6ff1f;
}

.preview-access-actions {
  display: grid;
}

.preview-access-actions .primary, .preview-access-actions .ghost {
  min-height: 54px;
}

.preview-access-actions .primary {
  color: #112235;
  background: #d9e9ff;
  border-radius: 16px;
  width: 100%;
  padding: 0 18px;
  font-size: 1rem;
  font-weight: 700;
}

.preview-access-error, .preview-access-success {
  border-radius: 16px;
  padding: 12px 14px;
  font-size: .94rem;
}

.preview-access-error {
  color: #ffd6de;
  background: #ff6f8a1f;
  border: 1px solid #ff96ac29;
}

.preview-access-success {
  color: #d7ffe7;
  background: #6fffb326;
}

@media (max-width: 720px) {
  .preview-access-page {
    padding: 20px 14px;
  }

  .preview-access-shell {
    width: min(100%, 380px);
  }

  .preview-access-card {
    padding: 18px;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/