﻿:root {
  color-scheme: dark;
  --bg: #030303;
  --bg-soft: #080706;
  --surface: #0d0a0a;
  --surface-strong: #171111;
  --line: rgba(212, 175, 55, 0.15);
  --line-strong: rgba(212, 175, 55, 0.42);
  --text: #f8f2e7;
  --muted: #b9b1a2;
  --muted-strong: #e4dbcd;
  --crimson: #b60000;
  --crimson-bright: #e01818;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max-width: 1240px;
  --header-height: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(182, 0, 0, 0.06), transparent 18%, transparent 82%, rgba(212, 175, 55, 0.04)),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--crimson);
  color: #fff;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  outline: 2px solid var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 34px;
  border-bottom: 1px solid transparent;
  transition: background 260ms var(--ease), border-color 260ms var(--ease), height 260ms var(--ease);
}

.site-header.is-scrolled,
.site-header.nav-active {
  height: 66px;
  background: rgba(3, 3, 3, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand__mark {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(182, 0, 0, 0.36));
}

.brand__name {
  max-width: 170px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
}

.brand__logo {
  display: block;
  width: min(260px, 58vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.5));
}

.brand__logo--footer {
  width: min(230px, 62vw);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.language-switcher {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.58);
}

.language-switcher span {
  color: rgba(247, 241, 229, 0.36);
  font-size: 0.78rem;
}

.language-button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  background: rgba(182, 0, 0, 0.26);
  color: var(--text);
  outline: none;
}

.language-button.is-active {
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.45);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 130;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  touch-action: manipulation;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  pointer-events: none;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--text);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 34px) 32px 106px;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 18% 52%, rgba(3, 3, 3, 0.7) 0%, rgba(3, 3, 3, 0.42) 30%, rgba(3, 3, 3, 0) 58%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.56) 0%, rgba(3, 3, 3, 0.24) 34%, rgba(3, 3, 3, 0.04) 66%, rgba(3, 3, 3, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.58) 0%, rgba(3, 3, 3, 0.04) 42%, rgba(3, 3, 3, 0.16) 100%),
    url("../../assets/images/hero-akai-hana-gallery.png") center / cover no-repeat;
  transform: scale(1.02);
  animation: hero-breathe 18s var(--ease) infinite alternate;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 23% 36%, rgba(182, 0, 0, 0.14), rgba(182, 0, 0, 0) 25%),
    radial-gradient(circle at 72% 26%, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0) 18%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.3), rgba(3, 3, 3, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(3, 3, 3, 0) 100%);
}

.hero__content {
  position: relative;
  width: min(680px, 100%);
  margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.82);
}

.hero__logo {
  width: min(430px, 88vw);
  height: auto;
  margin: 0 auto 26px;
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 30px 58px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 20px rgba(212, 175, 55, 0.12));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  max-width: 11ch;
  font-size: 5rem;
}

h2 {
  max-width: 14ch;
  font-size: 3.1rem;
}

h3 {
  font-size: 1.45rem;
}

.hero__lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 1.16rem;
}

.hero__actions,
.art-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__actions {
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 14px 34px rgba(182, 0, 0, 0.34);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--crimson-bright);
}

.button--ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.button--buy {
  min-height: 42px;
  padding: 10px 14px;
  border-color: rgba(182, 0, 0, 0.55);
  background: rgba(182, 0, 0, 0.16);
  color: var(--text);
}

.button--buy:hover,
.button--buy:focus-visible {
  background: var(--crimson);
  color: #fff;
}

.hero__preview {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 22px;
  width: min(var(--max-width), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.6);
  backdrop-filter: blur(12px);
}

.hero__preview span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--muted-strong);
  text-align: center;
  font-size: 0.92rem;
}

.hero__preview span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: 104px 32px;
  background: var(--bg);
}

.section--quiet {
  background: var(--bg-soft);
}

.section__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.section__heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(260px, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section__heading p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.intro {
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro__grid {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.9fr) minmax(260px, 1fr);
  gap: 30px;
  align-items: center;
}

.intro__kicker {
  margin: 0;
  color: var(--crimson-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.intro h2 {
  font-size: 2.2rem;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted-strong);
  transition: border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--text);
  outline: none;
}

.gallery-count {
  min-height: 24px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.art-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.art-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.48);
}

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

.art-card__figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #08080a;
}

.art-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.art-card:hover .art-card__figure img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.art-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.art-card__body p {
  margin: 0;
  color: var(--muted);
}

.art-card__meta {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.art-card__footer {
  justify-content: space-between;
  margin-top: 4px;
}

.price {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

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

.collection-card {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.collection-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: var(--shadow);
}

.collection-card__figure {
  position: relative;
  height: 210px;
  margin: 0;
  overflow: hidden;
  background: #08080a;
}

.collection-card__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.05), rgba(3, 3, 3, 0.72));
}

.collection-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease), filter 560ms var(--ease);
}

.collection-card:hover .collection-card__figure img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.05);
}

.collection-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.collection-card p {
  margin: 0;
  color: var(--muted);
}

.button--collection {
  min-height: 40px;
  justify-self: start;
  padding: 10px 13px;
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(212, 175, 55, 0.08);
  color: var(--text);
}

.button--collection:hover,
.button--collection:focus-visible {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.custom-designs {
  background:
    linear-gradient(135deg, rgba(182, 0, 0, 0.12), rgba(212, 175, 55, 0.04) 42%, rgba(3, 3, 3, 0) 72%),
    var(--bg);
}

.custom-designs,
.about,
.contact {
  position: relative;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
}

.custom-designs::before,
.about::before,
.contact::before,
.custom-designs::after,
.about::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.custom-designs::before,
.about::before,
.contact::before {
  z-index: -2;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.1) contrast(1.1);
  transform: translateZ(0);
}

.custom-designs::after,
.about::after,
.contact::after {
  z-index: -1;
}

.custom-designs > .section__inner,
.about > .section__inner,
.contact > .section__inner {
  position: relative;
  z-index: 1;
}

.custom-designs::before {
  background-image: url("../../assets/images/section-services-artist-tablet.png?v=final-panel");
  background-position: center top;
  background-size: cover;
}

.custom-designs::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.18) 0%, rgba(3, 3, 3, 0.28) 45%, rgba(3, 3, 3, 0.58) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.24) 0%, rgba(3, 3, 3, 0.04) 44%, rgba(3, 3, 3, 0.42) 100%);
}

.about::before {
  background-image: url("../../assets/images/section-about-koi-garden-sharp.png?v=sharp-panel");
  background-position: center top;
  background-size: cover;
}

.about::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.08) 0%, rgba(3, 3, 3, 0.24) 44%, rgba(3, 3, 3, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08) 0%, rgba(3, 3, 3, 0.02) 50%, rgba(3, 3, 3, 0.34) 100%);
}

.contact::before {
  background-image: url("../../assets/images/section-contact-lotus-temple-sharp.png?v=lotus-panel");
  background-position: center center;
  background-size: cover;
  filter: saturate(1.12) contrast(1.16) brightness(1.08);
}

.contact::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.58) 0%, rgba(3, 3, 3, 0.18) 46%, rgba(3, 3, 3, 0.68) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.22) 0%, rgba(3, 3, 3, 0.04) 44%, rgba(3, 3, 3, 0.52) 100%),
    radial-gradient(circle at 50% 55%, rgba(182, 0, 0, 0.11), rgba(182, 0, 0, 0) 42%);
}

.custom-designs__grid,
.merch__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.custom-designs__copy p,
.merch__copy p {
  max-width: 620px;
  color: var(--muted);
}

.custom-designs__note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.08);
  color: var(--muted-strong);
}

.custom-designs__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.custom-designs__tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow: var(--shadow);
}

.form-heading {
  display: grid;
  gap: 8px;
}

.form-heading .eyebrow {
  margin: 0;
}

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

.form-grid__full {
  grid-column: 1 / -1;
}

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

.pricing-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.02) 42%, rgba(182, 0, 0, 0.04)),
    var(--surface);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: var(--shadow);
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-card__list {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding-left: 18px;
  color: var(--muted-strong);
}

.pricing-card__from {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.42);
  background: var(--surface-strong);
}

.step-card span {
  margin-bottom: auto;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.step-card strong {
  color: var(--text);
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.merch {
  background:
    linear-gradient(90deg, rgba(182, 0, 0, 0.1), rgba(212, 175, 55, 0.07), rgba(3, 3, 3, 0)),
    var(--bg);
}

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

.merch-item {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.merch-item strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.15;
}

.merch-item span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.42);
  background: var(--surface-strong);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px;
  color: var(--text);
  font-weight: 800;
  list-style-position: inside;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.about__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: 54px;
  align-items: start;
}

.about__copy p,
.contact__copy p {
  max-width: 620px;
  color: var(--muted);
}

.about__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about__metrics div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.about__metrics strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.about__metrics span,
.contact__details span {
  color: var(--muted);
}

.contact__details {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.contact__details a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.45);
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-form label,
.request-form label {
  display: grid;
  gap: 7px;
  color: var(--muted-strong);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #08080a;
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.contact-form textarea,
.request-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
}

.form-legal {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 0, 0, 0.16), rgba(182, 0, 0, 0) 34%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(3, 3, 3, 0)),
    var(--bg);
}

.final-cta__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 760px;
}

.final-cta__inner .eyebrow {
  margin-bottom: 0;
}

.final-cta__inner h2 {
  max-width: 15ch;
}

.final-cta__inner p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030304;
  padding: 32px;
}

.site-footer__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(182, 0, 0, 0.16), rgba(182, 0, 0, 0) 28%),
    rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
}

.lightbox__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(88svh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.38fr);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius);
  background: rgba(8, 8, 10, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.72);
  animation: lightbox-enter 220ms var(--ease);
}

.lightbox__figure {
  min-height: 0;
  margin: 0;
  background: #020203;
}

.lightbox__figure img {
  width: 100%;
  height: 100%;
  max-height: 88svh;
  object-fit: contain;
}

.lightbox__content {
  display: grid;
  align-content: start;
  gap: 16px;
  max-height: min(88svh, 820px);
  overflow-y: auto;
  padding: 34px;
  border-left: 1px solid var(--line);
}

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

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.72);
  color: var(--text);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: rgba(182, 0, 0, 0.34);
  outline: none;
}

.lightbox__close {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  font-size: 1.65rem;
}

.lightbox__nav {
  top: 50%;
  width: 44px;
  height: 56px;
  font-size: 2.2rem;
}

.lightbox__nav--prev {
  left: 14px;
}

.lightbox__nav--next {
  right: 14px;
}

/* Gallery and Discord upgrade */
.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(182, 0, 0, 0.18), rgba(182, 0, 0, 0) 28%),
    radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0) 24%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.94), rgba(11, 11, 13, 0.98)),
    var(--bg);
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 44px 32px auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 0, 0, 0), rgba(182, 0, 0, 0.75), rgba(212, 175, 55, 0.56), rgba(182, 0, 0, 0));
  opacity: 0.72;
}

.gallery-section .section__inner {
  position: relative;
  z-index: 1;
}

.gallery-section .section__heading {
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.gallery-section .section__heading h2 {
  max-width: 12ch;
}

.gallery-section .filter-bar {
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.gallery-section .filter-button {
  border-color: transparent;
  background: transparent;
}

.gallery-section .filter-button:hover,
.gallery-section .filter-button:focus-visible,
.gallery-section .filter-button.is-active {
  border-color: rgba(212, 175, 55, 0.46);
  background: rgba(182, 0, 0, 0.22);
}

.gallery-section .gallery-count {
  color: rgba(247, 241, 229, 0.68);
}

.gallery-section .gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.gallery-section .art-card {
  position: relative;
  grid-column: span 4;
  min-height: 560px;
  background: #070708;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.gallery-section .art-card:nth-child(1),
.gallery-section .art-card:nth-child(4) {
  grid-column: span 6;
}

.gallery-section .art-card:nth-child(6) {
  grid-column: span 5;
}

.gallery-section .art-card:nth-child(7) {
  grid-column: span 7;
}

.gallery-section .art-card__figure {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 0;
}

.gallery-section .art-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-section .art-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, rgba(3, 3, 3, 0.1) 46%, rgba(3, 3, 3, 0.74) 78%, rgba(3, 3, 3, 0.9)),
    linear-gradient(135deg, rgba(182, 0, 0, 0.18), rgba(182, 0, 0, 0) 50%);
  opacity: 1;
  transition: background 260ms var(--ease), opacity 260ms var(--ease);
}

.gallery-section .art-card__overlay-content {
  display: grid;
  gap: 8px;
  transform: translateY(0);
  transition: transform 260ms var(--ease);
}

.gallery-section .art-card__overlay-meta {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-section .art-card__overlay strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.08;
}

.gallery-section .art-card__overlay-cta {
  width: fit-content;
  margin-top: 4px;
  padding: 9px 12px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.72);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.gallery-section .art-card:hover .art-card__overlay,
.gallery-section .art-card:focus-within .art-card__overlay {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, rgba(3, 3, 3, 0.08) 44%, rgba(3, 3, 3, 0.7) 76%, rgba(3, 3, 3, 0.9)),
    linear-gradient(135deg, rgba(182, 0, 0, 0.26), rgba(182, 0, 0, 0) 52%);
}

.gallery-section .art-card:hover .art-card__overlay-content,
.gallery-section .art-card:focus-within .art-card__overlay-content {
  transform: translateY(0);
}

.gallery-section .art-card__body {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.88), rgba(16, 16, 19, 0.98)),
    var(--surface);
}

.discord-section {
  background:
    linear-gradient(135deg, rgba(182, 0, 0, 0.12), rgba(212, 175, 55, 0.06) 46%, rgba(3, 3, 3, 0)),
    var(--bg-soft);
}

.discord-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(182, 0, 0, 0.18), rgba(182, 0, 0, 0) 32%),
    rgba(16, 16, 19, 0.82);
  box-shadow: var(--shadow);
}

.discord-card::after {
  content: "";
  position: absolute;
  inset: auto 34px 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(182, 0, 0, 0), rgba(182, 0, 0, 0.86), rgba(212, 175, 55, 0.62), rgba(182, 0, 0, 0));
}

.discord-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
}

.button--discord {
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(88, 101, 242, 0.18);
  color: var(--text);
}

.button--discord:hover,
.button--discord:focus-visible {
  border-color: var(--gold);
  background: rgba(182, 0, 0, 0.32);
}

.form-discord {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.07);
}

.form-discord span {
  flex: 1 1 240px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.button--discord-mini {
  min-height: 36px;
  flex: 0 0 auto;
  padding: 8px 11px;
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(3, 3, 3, 0.42);
  color: var(--text);
  font-size: 0.84rem;
}

.button--discord-mini:hover,
.button--discord-mini:focus-visible {
  border-color: var(--gold);
  background: rgba(182, 0, 0, 0.24);
}

/* Design studio project gallery */
.project-card__media {
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.project-placeholder {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 18%, rgba(212, 175, 55, 0.22), transparent 24%),
    radial-gradient(circle at 74% 72%, rgba(182, 0, 0, 0.32), transparent 28%),
    linear-gradient(145deg, #09090b, #181015 54%, #050506);
  color: var(--text);
  transition: transform 620ms var(--ease), filter 620ms var(--ease);
}

.project-placeholder::before,
.project-placeholder::after {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(212, 175, 55, 0.22);
  opacity: 0.72;
}

.project-placeholder::after {
  inset: 46px;
  border-color: rgba(182, 0, 0, 0.28);
  transform: rotate(-4deg);
}

.project-placeholder__symbol {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 8.5rem);
  line-height: 1;
  color: rgba(247, 241, 229, 0.9);
  text-shadow: 0 0 34px rgba(182, 0, 0, 0.34);
}

.project-placeholder__category {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.62);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-placeholder--red,
.project-placeholder--crimson {
  background:
    radial-gradient(circle at 24% 22%, rgba(212, 175, 55, 0.2), transparent 25%),
    radial-gradient(circle at 72% 70%, rgba(182, 0, 0, 0.42), transparent 30%),
    linear-gradient(145deg, #070708, #1d0b10 58%, #050506);
}

.project-placeholder--ember {
  background:
    radial-gradient(circle at 70% 24%, rgba(212, 175, 55, 0.26), transparent 24%),
    radial-gradient(circle at 22% 76%, rgba(182, 0, 0, 0.42), transparent 32%),
    linear-gradient(145deg, #080707, #20100c 56%, #050506);
}

.project-placeholder--gold {
  background:
    radial-gradient(circle at 70% 22%, rgba(212, 175, 55, 0.34), transparent 26%),
    radial-gradient(circle at 22% 74%, rgba(182, 0, 0, 0.24), transparent 28%),
    linear-gradient(145deg, #080808, #19140b 55%, #050506);
}

.project-placeholder--sakura {
  background:
    radial-gradient(circle at 28% 20%, rgba(247, 241, 229, 0.16), transparent 24%),
    radial-gradient(circle at 76% 70%, rgba(182, 0, 0, 0.28), transparent 30%),
    linear-gradient(145deg, #08080a, #1a1015 56%, #050506);
}

.project-placeholder--moon,
.project-placeholder--mist {
  background:
    radial-gradient(circle at 72% 22%, rgba(247, 241, 229, 0.18), transparent 24%),
    radial-gradient(circle at 24% 74%, rgba(212, 175, 55, 0.16), transparent 30%),
    linear-gradient(145deg, #08090c, #111419 56%, #050506);
}

.project-placeholder--violet {
  background:
    radial-gradient(circle at 72% 24%, rgba(182, 0, 0, 0.26), transparent 24%),
    radial-gradient(circle at 22% 76%, rgba(126, 85, 168, 0.26), transparent 32%),
    linear-gradient(145deg, #08070a, #151020 56%, #050506);
}

.project-placeholder--black {
  background:
    radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.14), transparent 23%),
    linear-gradient(145deg, #050506, #0d0d10 54%, #010101);
}

.project-placeholder--blue {
  background:
    radial-gradient(circle at 28% 20%, rgba(212, 175, 55, 0.18), transparent 24%),
    radial-gradient(circle at 76% 70%, rgba(49, 95, 128, 0.3), transparent 30%),
    linear-gradient(145deg, #06080b, #0b1620 56%, #050506);
}

.gallery-section .art-card:hover .project-placeholder,
.gallery-section .art-card:focus-within .project-placeholder {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.06);
}

.project-card__style {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.project-card__story {
  min-height: 4.4em;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.07);
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 700;
}

.project-card__button {
  flex: 0 0 auto;
}

.gallery-section .art-card__footer {
  align-items: flex-end;
  gap: 14px;
}

.discord-action {
  display: grid;
  justify-items: end;
  gap: 12px;
  min-width: min(100%, 260px);
}

.discord-identity {
  display: grid;
  gap: 5px;
  min-width: 220px;
  padding: 13px 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.48);
}

.discord-identity span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.discord-identity strong {
  color: var(--text);
  font-size: 1.16rem;
}

.discord-status,
.copy-status {
  min-height: 1.1em;
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-discord .copy-status {
  flex: 0 0 100%;
}

.project-placeholder--lightbox {
  min-height: min(68vh, 680px);
}

.lightbox__figure .project-placeholder {
  border-radius: 0;
}

.lightbox__style {
  color: var(--gold);
  font-weight: 700;
}

.lightbox__details {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.lightbox__detail {
  padding-top: 12px;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.lightbox__detail strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.lightbox__detail p {
  margin: 0;
}

.lightbox__tags {
  margin-top: 4px;
}

.lightbox__cta {
  width: fit-content;
  margin-top: 8px;
}

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

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

@keyframes hero-breathe {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}

@keyframes lightbox-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
    gap: 10px;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
    gap: 10px;
  }

  .nav-toggle {
    order: 3;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 120;
    inset: 66px 12px auto 12px;
    display: grid;
    gap: 6px;
    max-height: calc(100svh - 82px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 3, 3, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__content {
    margin-left: 0;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .section {
    padding: 86px 20px;
  }

  .custom-designs::before {
    background-position: center top;
    background-size: cover;
  }

  .about::before {
    background-position: center top;
    background-size: cover;
  }

  .contact::before {
    background-position: center top;
    background-size: cover;
  }

  .section__heading,
  .intro__grid,
  .custom-designs__grid,
  .merch__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .collection-grid,
  .pricing-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-section .art-card,
  .gallery-section .art-card:nth-child(1),
  .gallery-section .art-card:nth-child(4),
  .gallery-section .art-card:nth-child(6),
  .gallery-section .art-card:nth-child(7) {
    grid-column: span 1;
    min-height: 0;
  }

  .discord-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .lightbox__dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .lightbox__content {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 158px;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero__image {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.86) 0%, rgba(3, 3, 3, 0.5) 100%),
      linear-gradient(0deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.12) 48%, rgba(3, 3, 3, 0.56) 100%),
      url("../../assets/images/hero-akai-hana-gallery.png") center / cover no-repeat;
  }

  h1 {
    max-width: 10ch;
    font-size: 2.92rem;
  }

  h2 {
    max-width: 12ch;
    font-size: 2.12rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero__logo {
    width: min(280px, 82vw);
    height: auto;
    margin-bottom: 18px;
  }

  .hero__actions,
  .art-card__footer {
    align-items: stretch;
  }

  .hero__actions .button,
  .art-card__footer .button {
    width: 100%;
  }

  .hero__preview {
    left: 20px;
    right: 20px;
    bottom: 18px;
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .hero__preview span {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .hero__preview span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .intro {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .gallery-grid,
  .collection-grid,
  .pricing-grid,
  .step-grid,
  .merch__items,
  .about__metrics {
    grid-template-columns: 1fr;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-section::before {
    inset-inline: 20px;
  }

  .gallery-section .section__heading {
    padding-bottom: 22px;
  }

  .gallery-section .filter-bar {
    width: 100%;
  }

  .gallery-section .art-card__overlay {
    opacity: 1;
    padding: 16px;
  }

  .gallery-section .art-card__overlay-content {
    transform: translateY(0);
  }

  .gallery-section .art-card__overlay strong {
    font-size: 1.24rem;
  }

  .discord-card {
    padding: 22px;
  }

  .form-discord {
    align-items: stretch;
    flex-direction: column;
  }

  .button--discord-mini {
    width: 100%;
  }

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

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

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

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox__dialog {
    max-height: 92svh;
  }

  .lightbox__figure img {
    max-height: 58svh;
  }

  .lightbox__content {
    padding: 22px;
  }

  .lightbox__nav {
    top: 38%;
    width: 40px;
    height: 50px;
  }
}

@media (max-width: 980px) {
  .discord-action {
    justify-items: start;
    width: 100%;
  }

  .discord-identity {
    width: min(100%, 320px);
    min-width: 0;
  }

  .project-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  .gallery-section .art-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .project-card__button,
  .lightbox__cta {
    width: 100%;
  }

  .project-placeholder {
    min-height: 300px;
  }

  .project-placeholder__symbol {
    font-size: 5rem;
  }

  .project-placeholder--lightbox {
    min-height: 46svh;
  }

  .discord-action,
  .discord-identity,
  .button--discord {
    width: 100%;
  }

  .discord-status,
  .copy-status {
    font-size: 0.78rem;
  }

  .lightbox__details {
    gap: 10px;
  }
}

/* Design Studio showcase */
.gallery-section {
  padding-top: clamp(46px, 5vw, 78px);
  padding-bottom: clamp(86px, 9vw, 138px);
  padding-inline: clamp(20px, 4vw, 48px);
}

.gallery-section .section__inner {
  width: min(1320px, 100%);
}

.gallery-section .section__heading {
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  margin-bottom: 24px;
}

.gallery-section .section__heading h2 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 4.2vw, 4rem);
}

.gallery-notice {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(182, 0, 0, 0.1) 46%, rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 12, 0.84);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.gallery-notice::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), rgba(182, 0, 0, 0.65), transparent);
}

.gallery-notice__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.52);
  font-size: 1.08rem;
}

.gallery-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.gallery-notice p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-strong);
}

.gallery-section .filter-bar {
  width: 100%;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.gallery-section .filter-button {
  min-height: 42px;
  padding: 10px 13px;
  white-space: nowrap;
}

.gallery-section .gallery-count {
  margin-bottom: 18px;
}

.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 30px);
}

.gallery-section .art-card,
.gallery-section .art-card:nth-child(1),
.gallery-section .art-card:nth-child(4),
.gallery-section .art-card:nth-child(6),
.gallery-section .art-card:nth-child(7) {
  grid-column: auto;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-color: rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    #08080a;
}

.gallery-section .art-card:hover,
.gallery-section .art-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
}

.gallery-section .art-card__figure {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.gallery-section .art-card__media {
  border: 0;
  padding: 0;
  background: #050506;
  color: inherit;
}

.project-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 640ms var(--ease), filter 640ms var(--ease);
}

.gallery-section .art-card:hover .project-card__image,
.gallery-section .art-card:focus-within .project-card__image {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.06);
}

.gallery-section .art-card__overlay {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, rgba(3, 3, 3, 0.1) 46%, rgba(3, 3, 3, 0.74) 78%, rgba(3, 3, 3, 0.9)),
    linear-gradient(135deg, rgba(182, 0, 0, 0.18), transparent 50%);
}

.gallery-section .art-card__overlay-content {
  gap: 7px;
}

.gallery-section .art-card__overlay strong {
  max-width: 12ch;
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
}

.gallery-section .art-card__body {
  align-content: start;
  gap: 11px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(17, 17, 20, 0.98), rgba(8, 8, 10, 0.98)),
    var(--surface);
}

.gallery-section .art-card__body h3 {
  font-size: 1.22rem;
}

.gallery-section .art-card__meta {
  color: var(--gold);
}

.project-card__style {
  color: rgba(247, 241, 229, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

.project-card__story {
  min-height: 4.6em;
  font-size: 0.92rem;
  line-height: 1.52;
}

.gallery-section .art-card__footer {
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.gallery-section .project-tags {
  max-width: 100%;
}

.gallery-section .project-tags span {
  padding: 5px 8px;
  font-size: 0.7rem;
}

.project-card__button {
  min-height: 40px;
  white-space: nowrap;
}

.lightbox__dialog {
  width: min(1240px, 100%);
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.38fr);
}

.lightbox__figure {
  min-height: min(76svh, 760px);
}

.lightbox__figure img {
  height: 100%;
  max-height: min(88svh, 820px);
  object-fit: cover;
}

.lightbox__content h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.lightbox__style {
  color: var(--gold);
  font-weight: 800;
}

.lightbox__list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.lightbox__detail p,
.lightbox__detail li {
  color: var(--muted);
}

.lightbox__cta {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .gallery-section .section__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .gallery-section .art-card__figure {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  .brand__name {
    max-width: 158px;
    white-space: normal;
  }

  .gallery-section {
    padding-inline: 20px;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-notice {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .gallery-section .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .gallery-section .art-card__figure {
    aspect-ratio: 4 / 5.2;
  }

  .gallery-section .art-card__body {
    padding: 20px;
  }

  .gallery-section .art-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .project-card__story {
    min-height: 0;
  }

  .lightbox__dialog {
    grid-template-columns: 1fr;
    max-height: 92svh;
    overflow-y: auto;
  }

  .lightbox__figure {
    min-height: 54svh;
  }

  .lightbox__figure img {
    max-height: 54svh;
  }
}

@media (max-width: 430px) {
  .site-header {
    width: 100%;
    max-width: 100vw;
    gap: 6px;
    overflow-x: clip;
    padding-inline: 12px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 8px;
    max-width: calc(100vw - 156px);
  }

  .brand__mark {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .brand__name {
    max-width: 110px;
    font-size: 0.88rem;
    overflow-wrap: anywhere;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .language-switcher {
    flex: 0 0 auto;
    padding: 3px;
  }

  .language-button {
    min-width: 34px;
  }

  .nav-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .site-nav {
    inset-inline: 10px;
    max-width: calc(100vw - 20px);
  }

  .hero .eyebrow {
    max-width: 31ch;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero__lead {
    max-width: 34ch;
  }

  .filter-bar,
  .gallery-section .filter-bar {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .filter-button,
  .gallery-section .filter-button {
    flex: 1 1 calc(50% - 8px);
    white-space: normal;
  }

  .gallery-section .section__heading h2 {
    font-size: 2.28rem;
  }

  .gallery-section .filter-button {
    min-height: 44px;
    padding-inline: 14px;
  }

  .form-discord {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .form-discord span,
  .form-discord .copy-status {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .discord-status,
  .copy-status {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* Luxury studio refinement */
.site-header {
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.56), rgba(3, 3, 3, 0));
}

.hero {
  min-height: 102svh;
  padding-bottom: 126px;
}

.hero__ambient::before,
.hero__ambient::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 15px;
  border-radius: 70% 30% 70% 30%;
  background: rgba(182, 0, 0, 0.72);
  filter: blur(0.2px) drop-shadow(0 0 10px rgba(182, 0, 0, 0.24));
  opacity: 0.5;
  animation: sakura-drift 14s var(--ease) infinite;
}

.hero__ambient::before {
  top: 22%;
  left: 61%;
  transform: rotate(24deg);
}

.hero__ambient::after {
  top: 38%;
  left: 82%;
  width: 7px;
  height: 12px;
  opacity: 0.38;
  animation-delay: -6s;
}

.hero__content {
  width: min(540px, 100%);
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: -34px -34px -30px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at 46% 50%, rgba(3, 3, 3, 0.56), rgba(3, 3, 3, 0.24) 44%, rgba(3, 3, 3, 0) 72%);
  pointer-events: none;
}

.hero .eyebrow,
.section .eyebrow {
  letter-spacing: 0.04em;
  font-size: 0.74rem;
}

.hero__logo {
  width: min(360px, 78vw);
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 4.9vw, 5.2rem);
  line-height: 1;
}

.hero__lead {
  max-width: 30rem;
  color: rgba(248, 242, 231, 0.88);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.hero__preview {
  display: none;
}

.hero__preview span {
  min-height: 50px;
  color: rgba(248, 242, 231, 0.72);
  font-size: 0.84rem;
}

.section {
  padding-block: clamp(86px, 9vw, 138px);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  line-height: 0.98;
}

.intro {
  background:
    linear-gradient(90deg, rgba(182, 0, 0, 0.08), transparent 42%),
    var(--bg);
}

.intro__grid {
  grid-template-columns: 0.42fr minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 64px);
}

.intro p:last-child,
.custom-designs__copy p,
.about__copy p,
.contact__copy p {
  font-size: 1.03rem;
}

.custom-designs__tags span {
  border-color: rgba(212, 175, 55, 0.26);
  background: rgba(3, 3, 3, 0.28);
}

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

.pricing-card {
  box-shadow: none;
}

.pricing-card__from {
  color: rgba(212, 175, 55, 0.84);
  font-size: 0.95rem;
}

.gallery-section .section__heading {
  margin-bottom: 26px;
}

.gallery-section .filter-bar,
.gallery-section .gallery-count {
  display: none;
}

.gallery-section .gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.gallery-section .art-card,
.gallery-section .art-card:nth-child(1),
.gallery-section .art-card:nth-child(4),
.gallery-section .art-card:nth-child(6),
.gallery-section .art-card:nth-child(7) {
  grid-column: auto;
  min-height: 0;
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.gallery-section .art-card__figure {
  aspect-ratio: 4 / 5.35;
}

.gallery-section .art-card__body {
  gap: 12px;
  padding: 22px;
}

.gallery-section .project-card__style,
.gallery-section .project-tags {
  display: none;
}

.gallery-section .art-card__footer {
  margin-top: 8px;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 64px);
}

.gallery-cta .button {
  min-width: min(100%, 280px);
  border-color: rgba(212, 175, 55, 0.44);
  background: rgba(3, 3, 3, 0.34);
}

.collection-card {
  min-height: 330px;
}

.collection-card__figure {
  height: 240px;
}

.merch__items,
.about__metrics {
  opacity: 0.86;
}

@keyframes sakura-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }
  50% {
    transform: translate3d(-18px, 28px, 0) rotate(64deg);
  }
  100% {
    transform: translate3d(-36px, 58px, 0) rotate(112deg);
  }
}

@media (max-width: 1100px) {
  .design-options .pricing-grid,
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero__image {
    background:
      radial-gradient(ellipse at 34% 45%, rgba(3, 3, 3, 0.58) 0%, rgba(3, 3, 3, 0.24) 46%, rgba(3, 3, 3, 0) 74%),
      linear-gradient(0deg, rgba(3, 3, 3, 0.66) 0%, rgba(3, 3, 3, 0.08) 48%, rgba(3, 3, 3, 0.2) 100%),
      url("../../assets/images/hero-akai-hana-gallery.png") 62% center / cover no-repeat;
  }

  .hero__logo {
    width: min(270px, 74vw);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .design-options .pricing-grid,
  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }

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

/* Restored home and tattoo gallery */
.site-nav a {
  white-space: nowrap;
}

.button--header {
  min-height: 38px;
  padding: 9px 14px;
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(182, 0, 0, 0.26);
  color: var(--text);
  font-size: 0.84rem;
  white-space: nowrap;
}

.button--header:hover,
.button--header:focus-visible {
  border-color: var(--gold);
  background: var(--crimson);
}

.hero__image {
  background:
    radial-gradient(ellipse at 21% 52%, rgba(3, 3, 3, 0.82) 0%, rgba(3, 3, 3, 0.55) 34%, rgba(3, 3, 3, 0.12) 60%, rgba(3, 3, 3, 0) 78%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.38) 38%, rgba(3, 3, 3, 0.05) 72%, rgba(3, 3, 3, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.66) 0%, rgba(3, 3, 3, 0.06) 46%, rgba(3, 3, 3, 0.24) 100%),
    url("../../assets/images/hero-akai-hana-gallery.png") center / cover no-repeat;
}

.hero__content {
  width: min(620px, 100%);
}

.hero__logo {
  width: min(390px, 82vw);
}

.gallery-section .filter-bar {
  display: flex;
}

.gallery-section .gallery-count {
  display: block;
}

.gallery-section .art-card__body h3 {
  color: var(--text);
}

.gallery-notice__icon {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

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

@media (max-width: 680px) {
  .hero__image {
    background:
      radial-gradient(ellipse at 34% 45%, rgba(3, 3, 3, 0.58) 0%, rgba(3, 3, 3, 0.24) 46%, rgba(3, 3, 3, 0) 74%),
      linear-gradient(0deg, rgba(3, 3, 3, 0.68) 0%, rgba(3, 3, 3, 0.08) 48%, rgba(3, 3, 3, 0.22) 100%),
      url("../../assets/images/hero-akai-hana-gallery.png") 62% center / cover no-repeat;
  }

  .hero__logo {
    width: min(280px, 76vw);
  }
}

/* Screenshot-style focused gallery base */
.intro,
#collections,
#custom-designs,
#design-options,
#how-it-works,
#merchandising,
#faq,
#about,
#contact,
#discord,
.final-cta,
.site-footer {
  display: none;
}

.hero {
  height: 660px;
  min-height: 0;
  align-items: start;
  padding: calc(var(--header-height) + 48px) 32px 96px;
}

.hero__content {
  width: min(560px, 100%);
}

.hero__content .hero__logo {
  display: none;
}

.hero .eyebrow {
  display: none;
}

.hero__title {
  max-width: 15ch;
  display: grid;
  gap: 2px;
  font-size: clamp(2.15rem, 2.55vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__title-accent {
  color: #ff1b1b;
}

.hero__lead {
  max-width: 30rem;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.5);
  color: rgba(248, 242, 231, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero__actions {
  margin-top: 18px;
}

.hero__actions .button--ghost {
  display: none;
}

.hero__actions .button,
.button--header {
  border-radius: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  bottom: 0;
  width: min(1120px, calc(100% - 64px));
  border-top-color: rgba(212, 175, 55, 0.24);
  border-bottom-color: rgba(212, 175, 55, 0.24);
  background: rgba(3, 3, 3, 0.42);
}

.hero__preview > span {
  min-height: 82px;
  place-items: center start;
  padding: 16px 22px;
  text-align: left;
}

.hero__preview .hero-value__icon,
.hero__preview .hero-value__copy,
.hero__preview .hero-value__copy strong,
.hero__preview .hero-value__copy small {
  min-height: 0;
  padding: 0;
  border: 0;
  text-align: left;
}

.hero-value {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hero-value__icon {
  width: 34px;
  height: 34px;
  display: block;
  position: relative;
}

.hero-value__icon::before,
.hero-value__icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 3px solid var(--crimson);
}

.hero-value__icon--flower::before {
  border-radius: 50% 50% 0 50%;
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(182, 0, 0, 0.08);
}

.hero-value__icon--torii::before {
  inset: 9px 2px auto;
  height: 8px;
  border-width: 0 0 4px;
}

.hero-value__icon--torii::after {
  inset: 15px 8px 4px;
  border-width: 0 4px;
}

.hero-value__icon--brush::before {
  inset: 4px 15px 3px 12px;
  border-width: 0;
  background: var(--crimson);
  transform: rotate(45deg);
}

.hero-value__icon--brush::after {
  inset: 24px 4px 4px 22px;
  border-width: 0;
  background: var(--gold);
}

.hero-value__icon--enso::before {
  inset: 4px;
  border-radius: 50%;
  border-color: var(--gold);
  border-right-color: var(--crimson);
}

.hero-value__icon--enso::after {
  display: none;
}

.hero-value__copy {
  display: grid;
  gap: 3px;
}

.hero-value__copy strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-value__copy small {
  color: rgba(248, 242, 231, 0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
}

.gallery-section {
  padding: 28px 32px 42px;
  background: #030303;
}

.gallery-section::before,
.gallery-notice,
.gallery-count,
.gallery-section .gallery-count,
.gallery-section .project-card__style,
.gallery-section .project-card__story,
.gallery-section .art-card__footer {
  display: none;
}

.gallery-section .section__inner {
  width: min(1320px, 100%);
}

.gallery-section .section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: 0;
}

.gallery-section .section__heading .eyebrow,
.gallery-section .section__heading p:last-child {
  display: none;
}

.gallery-section .section__heading h2 {
  max-width: none;
  position: relative;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.55rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-section .section__heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 44px;
  height: 2px;
  background: var(--crimson);
}

.gallery-section .filter-bar {
  width: auto;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin: -44px 0 22px auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.gallery-section .filter-button {
  min-height: 38px;
  padding: 10px 17px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 0;
  background: rgba(3, 3, 3, 0.54);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-section .filter-button:hover,
.gallery-section .filter-button:focus-visible,
.gallery-section .filter-button.is-active {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(182, 0, 0, 0.7);
}

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

.gallery-section .art-card,
.gallery-section .art-card:nth-child(1),
.gallery-section .art-card:nth-child(4),
.gallery-section .art-card:nth-child(6),
.gallery-section .art-card:nth-child(7) {
  grid-column: auto;
  min-height: 0;
  overflow: visible;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
}

.gallery-section .art-card__figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
}

.gallery-section .art-card__media {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #050505;
  cursor: pointer;
}

.gallery-section .project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) sepia(0.18) contrast(1.08);
}

.gallery-section .art-card:hover .project-card__image,
.gallery-section .art-card:focus-within .project-card__image {
  transform: scale(1.035);
}

.gallery-section .art-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0) 26%, rgba(3, 3, 3, 0.62) 66%, rgba(3, 3, 3, 0.92) 100%),
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.18), transparent 40%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-section .art-card__overlay-content {
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: translateY(10px);
  transition: transform 220ms ease;
}

.gallery-section .art-card__overlay-meta {
  color: rgba(248, 242, 231, 0.78);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-section .art-card__overlay strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.gallery-section .art-card__overlay-cta {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 15px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  color: var(--text);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-section .art-card:hover .art-card__overlay,
.gallery-section .art-card:focus-within .art-card__overlay {
  opacity: 1;
}

.gallery-section .art-card:hover .art-card__overlay-content,
.gallery-section .art-card:focus-within .art-card__overlay-content {
  transform: translateY(0);
}

.gallery-section .art-card__body {
  display: grid;
  gap: 4px;
  padding: 12px 4px 0;
  background: transparent;
  text-align: center;
}

.gallery-section .art-card__body h3 {
  order: 1;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-section .art-card__meta {
  order: 2;
  margin: 0;
  color: rgba(248, 242, 231, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gallery-cta {
  margin-top: 18px;
}

.gallery-cta .button {
  min-width: min(100%, 220px);
  min-height: 38px;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .gallery-section .filter-bar {
    margin-top: 0;
    justify-content: flex-start;
  }

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

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

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding: calc(var(--header-height) + 38px) 20px 28px;
  }

  .hero__title {
    max-width: 14ch;
    font-size: clamp(2.15rem, 9vw, 3.15rem);
  }

  .hero__title span {
    white-space: normal;
  }

  .hero__preview {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

.hero__preview > span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .gallery-section {
    padding-inline: 20px;
  }

  .gallery-section .section__heading {
    display: block;
  }

  .gallery-section .filter-bar {
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .gallery-section .filter-button {
    flex: 1 1 calc(50% - 9px);
    padding-inline: 12px;
    white-space: normal;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-section .art-card__overlay {
    padding: 20px;
  }
}

/* Final page structure: Home and Gallery are separate views */
main > section[data-page],
#collections,
#merchandising,
#faq,
.gallery-cta {
  display: none !important;
}

body[data-page="home"] #home {
  display: grid !important;
}

body[data-page="home"] .intro,
body[data-page="gallery"] #gallery,
body[data-page="stories"] #stories,
body[data-page="services"] #custom-designs,
body[data-page="services"] #design-options,
body[data-page="services"] #how-it-works,
body[data-page="services"] #discord,
body[data-page="about"] #about,
body[data-page="contact"] #contact,
body[data-page="contact"] .final-cta {
  display: block !important;
}

.site-nav a {
  position: relative;
  border-radius: 0;
  color: rgba(248, 242, 231, 0.84);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--crimson-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--crimson-bright);
}

.stories-section {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(52px, 7vw, 92px));
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 0, 0, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(13, 10, 10, 0.9), rgba(3, 3, 3, 0.98));
}

.stories-layout {
  width: min(1120px, 100%);
  display: grid;
  gap: clamp(30px, 5vw, 58px);
}

.stories-heading {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.stories-heading h2 {
  max-width: none;
}

.stories-heading p:not(.eyebrow) {
  max-width: 58ch;
  margin-inline: auto;
}

.story-feature {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, rgba(13, 10, 10, 0.86), rgba(3, 3, 3, 0.92));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.story-feature__image-link {
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: #030303;
}

.story-feature__image-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.story-feature img {
  width: 100%;
  height: auto;
}

.story-feature__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: clamp(18px, 3vw, 30px);
}

.story-feature__footer h3 {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.story-feature__footer .button {
  flex: 0 0 auto;
}

/* Stories cinematic editorial redesign */
.stories-section {
  min-height: 100svh;
  padding: var(--header-height) 0 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 0, 0, 0.14), transparent 32%),
    linear-gradient(180deg, #030303 0%, #070606 54%, #030303 100%);
}

.stories-layout {
  width: min(100vw, 1600px);
  max-width: none;
  display: block;
}

.stories-editorial {
  overflow: hidden;
  border-right: 1px solid rgba(182, 0, 0, 0.32);
  border-left: 1px solid rgba(182, 0, 0, 0.32);
  background:
    linear-gradient(90deg, rgba(182, 0, 0, 0.08), transparent 18%, transparent 82%, rgba(182, 0, 0, 0.08)),
    #050505;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.55);
}

.stories-hero {
  position: relative;
  min-height: 390px;
  aspect-ratio: 1536 / 397;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  border-bottom: 1px solid rgba(182, 0, 0, 0.46);
}

.stories-hero::before,
.stories-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stories-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, #030303 0%, #030303 26%, rgba(3, 3, 3, 0.84) 34%, rgba(3, 3, 3, 0.2) 50%, rgba(3, 3, 3, 0.05) 72%, rgba(3, 3, 3, 0.22) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.18), rgba(3, 3, 3, 0));
}

.stories-hero::after {
  z-index: 2;
  box-shadow: inset 0 -90px 120px rgba(0, 0, 0, 0.2);
}

.stories-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stories-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(40%, 560px);
  min-width: 480px;
  gap: clamp(6px, 0.7vw, 10px);
  padding: clamp(20px, 2.5vw, 36px) clamp(30px, 5vw, 78px);
}

.stories-hero h2 {
  max-width: 8.5em;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 3.65vw, 4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72);
}

.stories-hero h2 span {
  display: block;
  white-space: nowrap;
}

.stories-hero h2 span:nth-child(2) {
  color: var(--crimson-bright);
}

.stories-hero__subtitle {
  max-width: 34ch;
  margin: 0;
  color: var(--gold);
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  letter-spacing: 0.2em;
  line-height: 1.38;
  text-transform: uppercase;
}

.stories-hero__name {
  display: grid;
  gap: 4px;
  margin-top: 0;
  padding-left: 14px;
  border-left: 1px solid var(--crimson-bright);
}

.stories-hero__name span {
  color: var(--crimson-bright);
  font-size: 1.05rem;
}

.stories-hero__name small {
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stories-hero .button {
  width: fit-content;
  min-height: 36px;
  margin-top: 4px;
  padding: 0 18px;
  font-size: 0.68rem;
}

.stories-story-grid,
.stories-bottom-grid,
.stories-final-cta {
  border-top: 1px solid rgba(182, 0, 0, 0.4);
  background:
    radial-gradient(circle at 8% 30%, rgba(212, 175, 55, 0.035), transparent 24%),
    linear-gradient(180deg, rgba(14, 14, 12, 0.96), rgba(5, 6, 5, 0.99));
}

.stories-story-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 0.93fr 0.68fr 0.9fr;
  min-height: clamp(300px, 20vw, 330px);
}

.stories-copy,
.stories-symbols {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 2.4vw, 36px);
}

.stories-copy h3,
.stories-symbols h3 {
  max-width: 18ch;
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.18vw, 1.32rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stories-copy p:not(.eyebrow) {
  max-width: 66ch;
  margin: 0 0 8px;
  color: var(--muted-strong);
  font-size: clamp(0.72rem, 0.64vw, 0.84rem);
  line-height: 1.55;
}

.stories-copy--legend p:not(.eyebrow) {
  font-size: clamp(0.68rem, 0.6vw, 0.8rem);
  line-height: 1.48;
}

.stories-art-frame {
  display: grid;
  min-height: 100%;
  place-items: stretch;
  overflow: hidden;
  background: #030303;
}

.stories-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 620ms var(--ease), filter 620ms var(--ease);
}

.stories-art-frame:hover img,
.stories-art-frame:focus-visible img {
  transform: scale(1.018);
  filter: saturate(1.08) contrast(1.04);
}

.stories-art-frame:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.stories-symbols {
  border-left: 1px solid rgba(212, 175, 55, 0.12);
}

.stories-symbols ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stories-symbols li {
  position: relative;
  padding: 9px 0 9px 30px;
  color: var(--gold);
  font-size: clamp(0.8rem, 0.78vw, 0.96rem);
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.stories-symbols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.stories-bottom-grid {
  display: grid;
  grid-template-columns: 1.18fr 2.05fr 1.08fr;
  align-items: center;
  min-height: clamp(245px, 16vw, 310px);
  overflow: hidden;
}

.stories-uses {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(16px, 1.4vw, 24px);
}

.stories-uses span {
  display: grid;
  min-height: 54px;
  place-items: end center;
  padding: 10px 6px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  background:
    linear-gradient(180deg, rgba(182, 0, 0, 0.06), transparent 58%);
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.stories-art-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  align-items: center;
  padding: clamp(16px, 1.8vw, 28px);
}

.stories-art-row img {
  width: 100%;
  height: clamp(185px, 14.8vw, 245px);
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: #030303;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.stories-final-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(24px, 3vw, 42px);
}

.stories-final-cta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.3vw, 2.65rem);
  font-weight: 400;
  line-height: 1.1;
}

.stories-final-cta h3 span {
  display: block;
}

.stories-final-cta h3 span:last-child {
  color: var(--crimson-bright);
}

.stories-final-cta .button {
  min-height: 52px;
  padding-inline: 26px;
  justify-content: center;
}

body[data-page="home"] .hero {
  min-height: 100svh;
  height: auto;
  align-items: center;
  padding: calc(var(--header-height) + 34px) 32px 106px;
}

body[data-page="home"] .hero__image {
  background:
    radial-gradient(ellipse at 20% 52%, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.44) 32%, rgba(3, 3, 3, 0.06) 62%, rgba(3, 3, 3, 0) 78%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.62) 0%, rgba(3, 3, 3, 0.28) 38%, rgba(3, 3, 3, 0.05) 74%, rgba(3, 3, 3, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.58) 0%, rgba(3, 3, 3, 0.04) 46%, rgba(3, 3, 3, 0.18) 100%),
    url("../../assets/images/hero-akai-hana-gallery.png") center / cover no-repeat;
}

body[data-page="home"] .hero__content {
  width: min(660px, 100%);
}

body[data-page="home"] .hero__content .hero__logo {
  display: block;
  width: min(320px, 76vw);
  margin: 0 0 26px;
  filter:
    saturate(1.08)
    contrast(1.04)
    brightness(1.03)
    drop-shadow(0 30px 58px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 20px rgba(212, 175, 55, 0.14));
}

body[data-page="home"] .hero__title {
  max-width: 15ch;
  font-size: clamp(2.75rem, 4.5vw, 5rem);
}

body[data-page="home"] .hero__lead {
  max-width: 42rem;
}

body[data-page="home"] .hero__actions .button--ghost {
  display: inline-flex;
}

body[data-page="home"] .intro {
  padding: 74px 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(90deg, rgba(182, 0, 0, 0.08), transparent 28%, transparent 72%, rgba(212, 175, 55, 0.07)),
    #030303;
}

body[data-page="home"] .intro__grid {
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
}

.gallery-section {
  min-height: 100svh;
  padding: 0 28px 48px;
  background:
    linear-gradient(180deg, #030303 0%, #050303 64%, #030303 100%);
}

.gallery-page-hero {
  min-height: 520px;
  margin: 0 -28px;
  padding: calc(var(--header-height) + 42px) 28px 42px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(ellipse at 18% 48%, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.62) 34%, rgba(3, 3, 3, 0.14) 60%, rgba(3, 3, 3, 0) 78%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.48) 34%, rgba(3, 3, 3, 0.08) 62%, rgba(3, 3, 3, 0.36) 100%),
    linear-gradient(0deg, #030303 0%, rgba(3, 3, 3, 0) 34%),
    url("../../assets/images/gallery-geisha-tattooed-hero.png") center / cover no-repeat;
}

.gallery-page-hero__inner,
.gallery-content {
  width: min(1320px, 100%);
}

.gallery-section .gallery-page-hero__copy {
  display: grid;
  grid-template-columns: 1fr !important;
  max-width: 390px;
  gap: 18px;
  align-items: start;
  justify-content: start;
  margin: 0;
  padding: 0;
  border: 0;
}

.gallery-section .gallery-page-hero__copy > * {
  grid-column: 1;
}

.gallery-section .gallery-page-hero__copy .eyebrow {
  display: none;
}

.gallery-section .gallery-page-hero__copy h2 {
  position: static;
  max-width: none;
  color: var(--text);
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.gallery-section .gallery-page-hero__copy h2::after {
  content: "";
  position: static;
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 20px;
  background: var(--gold);
}

.gallery-section .gallery-page-hero__copy > p:not(.gallery-page-hero__accent) {
  display: block;
  max-width: 32ch;
  margin: 0;
  color: rgba(248, 242, 231, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-page-hero__accent {
  margin: -4px 0 0;
  color: var(--crimson-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.gallery-studio-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  margin-top: 12px;
  padding: 18px 22px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  background: rgba(3, 3, 3, 0.54);
  backdrop-filter: blur(8px);
}

.gallery-studio-note > div {
  min-width: 0;
}

.gallery-studio-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-studio-note p {
  display: block !important;
  margin: 0;
  color: rgba(248, 242, 231, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.gallery-content {
  margin: 0 auto;
  padding-top: 20px;
}

.gallery-section .filter-bar {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -12px auto 22px;
}

.gallery-section .filter-button {
  min-width: 110px;
}

.gallery-section .gallery-grid {
  gap: 16px;
}

.gallery-section .art-card__figure {
  aspect-ratio: 1 / 1.22;
}

.gallery-tagline {
  position: relative;
  margin: 30px auto 0;
  color: rgba(248, 242, 231, 0.72);
  font-size: 0.85rem;
  letter-spacing: 0.38em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-tagline::after {
  content: "";
  display: block;
  width: min(360px, 72vw);
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

@media (max-width: 900px) {
  .gallery-page-hero {
    min-height: 560px;
    background-position: 58% center;
  }

  .gallery-section .gallery-page-hero__copy {
    max-width: 350px;
  }

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

@media (max-width: 760px) {
  body[data-page="home"] .hero {
    padding: calc(var(--header-height) + 38px) 20px 28px;
  }

  body[data-page="home"] .hero__content .hero__logo {
    width: min(250px, 74vw);
  }

  body[data-page="home"] .hero__title {
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  body[data-page="home"] .intro {
    padding: 52px 20px;
  }

  body[data-page="home"] .intro__grid {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    padding-inline: 20px;
  }

  .gallery-page-hero {
    min-height: 620px;
    margin-inline: -20px;
    padding: calc(var(--header-height) + 38px) 20px 34px;
    align-items: end;
    background-position: 62% center;
  }

  .gallery-page-hero__inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .gallery-section .gallery-page-hero__copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .gallery-section .gallery-page-hero__copy h2 {
    font-size: clamp(2.7rem, 12vw, 3.45rem);
    letter-spacing: 0.04em;
  }

  .gallery-studio-note {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 16px;
  }

  .gallery-studio-note p {
    max-width: 27ch;
    font-size: 0.84rem;
    overflow-wrap: anywhere;
  }

  .gallery-section .filter-bar {
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-top: 20px;
  }

  .gallery-section .filter-button {
    width: 100%;
    flex: none;
    min-width: 0;
  }

  .gallery-section .filter-button:first-child,
  .gallery-section .filter-button:last-child {
    width: 100%;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile QA: keep the project CTA reachable inside the compact menu. */
.site-nav__book {
  display: none;
}

@media (max-width: 980px) {
  .site-nav .site-nav__book {
    display: inline-flex;
    justify-content: center;
    min-height: 42px;
    margin-top: 6px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    background: rgba(182, 0, 0, 0.24);
    color: var(--text);
  }
}

@media (max-width: 480px) {
  .language-button {
    min-width: 36px;
    min-height: 36px;
  }
}

@media (max-width: 680px) {
  .stories-section {
    padding-inline: 16px;
    padding-top: calc(var(--header-height) + 42px);
  }

  .stories-heading {
    text-align: left;
  }

  .story-feature {
    width: 100%;
    padding: 8px;
  }

  .story-feature__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .story-feature__footer .button {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .stories-layout {
    width: min(100vw, 1180px);
  }

  .stories-hero {
    min-height: 360px;
  }

  .stories-hero__copy {
    width: min(40%, 430px);
    min-width: 0;
  }

  .stories-story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stories-copy--story {
    grid-column: span 2;
    order: -1;
  }

  .stories-copy--legend,
  .stories-symbols {
    grid-column: span 1;
  }

  .stories-symbols {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
  }

  .stories-bottom-grid {
    grid-template-columns: 1fr;
  }

  .stories-copy--inspiration,
  .stories-art-row,
  .stories-final-cta {
    grid-column: auto;
  }

  .stories-uses {
    grid-template-columns: repeat(5, minmax(96px, 1fr));
  }

  .stories-art-row img {
    height: clamp(230px, 31vw, 360px);
  }
}

@media (max-width: 760px) {
  .stories-section {
    padding: var(--header-height) 0 0;
  }

  .stories-layout {
    width: 100%;
  }

  .stories-story-grid,
  .stories-bottom-grid {
    grid-template-columns: 1fr;
  }

  .stories-hero {
    min-height: 600px;
    aspect-ratio: auto;
    align-items: end;
  }

  .stories-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.08) 0%, rgba(3, 3, 3, 0.3) 35%, rgba(3, 3, 3, 0.96) 100%),
      radial-gradient(ellipse at 38% 74%, rgba(3, 3, 3, 0.86), rgba(3, 3, 3, 0.18) 62%, transparent 84%);
  }

  .stories-hero__image {
    object-position: 62% center;
  }

  .stories-hero__copy {
    width: 100%;
    min-width: 0;
    padding: 34px 22px 30px;
  }

  .stories-hero h2 {
    max-width: 9ch;
    font-size: clamp(3.05rem, 14vw, 4.65rem);
  }

  .stories-hero__subtitle {
    max-width: 28ch;
    font-size: 1rem;
  }

  .stories-hero .button {
    width: 100%;
  }

  .stories-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1.06rem;
    line-height: 1.82;
  }

  .stories-copy--story,
  .stories-copy--legend,
  .stories-symbols,
  .stories-copy--inspiration,
  .stories-art-row,
  .stories-final-cta {
    grid-column: auto;
  }

  .stories-copy--story {
    order: 1;
  }

  .stories-art-frame--flower {
    order: 2;
  }

  .stories-art-frame--torii {
    order: 3;
  }

  .stories-copy--legend {
    order: 4;
  }

  .stories-symbols {
    order: 5;
  }

  .stories-copy,
  .stories-symbols {
    padding: 38px 22px;
  }

  .stories-copy h3,
  .stories-symbols h3 {
    max-width: 16ch;
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .stories-art-frame {
    min-height: 0;
  }

  .stories-art-frame img {
    height: auto;
    object-fit: contain;
  }

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

  .stories-art-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px;
  }

  .stories-art-row img {
    height: auto;
    aspect-ratio: 158 / 229;
  }

  .stories-symbols li {
    font-size: 0.98rem;
  }

  .stories-final-cta {
    padding: 38px 22px;
  }

  .stories-final-cta .button {
    width: 100%;
  }
}

/* Stories archive cards and full reading view */
.stories-section {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(42px, 5vw, 74px)) clamp(18px, 3vw, 40px) clamp(56px, 7vw, 96px);
  overflow-x: hidden;
  background: #030303;
}

.stories-section::before,
.stories-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stories-section::before {
  z-index: 0;
  background: url("../../assets/images/stories-sakura-background.png") center / cover no-repeat;
  filter: saturate(1.2) contrast(1.08) brightness(1.06);
}

.stories-section::after {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(3, 3, 3, 0.06), rgba(3, 3, 3, 0.48) 76%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.5), rgba(3, 3, 3, 0.18) 48%, rgba(3, 3, 3, 0.42)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.24), rgba(3, 3, 3, 0.14) 42%, rgba(3, 3, 3, 0.6));
}

.stories-section.is-reading {
  padding: var(--header-height) 0 0;
}

.stories-layout {
  position: relative;
  z-index: 1;
  width: min(1680px, 100%);
  max-width: none;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
}

.stories-section.is-reading .stories-layout {
  width: 100%;
}

.stories-section.is-reading .stories-heading,
.stories-section.is-reading .stories-index {
  display: none;
}

.stories-heading {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.84);
}

.stories-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.15rem, 4.2vw, 4.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stories-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 270px));
  justify-content: center;
  gap: clamp(14px, 1.6vw, 22px);
}

.story-card {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  display: grid;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: var(--radius);
  background: #030303;
  color: var(--text);
  text-align: left;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.42);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.02) 0%, rgba(3, 3, 3, 0.1) 42%, rgba(3, 3, 3, 0.84) 100%),
    linear-gradient(135deg, rgba(182, 0, 0, 0.24), rgba(182, 0, 0, 0) 48%);
  pointer-events: none;
}

.story-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(1.02);
  transform: scale(1);
  transition: transform 720ms var(--ease), filter 720ms var(--ease);
}

.story-card__content {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  gap: 8px;
  padding: clamp(16px, 1.8vw, 22px);
}

.story-card__number {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.story-card__title {
  display: block;
  max-width: 11ch;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
}

.story-card:hover,
.story-card:focus-visible {
  border-color: rgba(212, 175, 55, 0.58);
  outline: none;
}

.story-card:hover .story-card__image,
.story-card:focus-visible .story-card__image {
  filter: saturate(1.18) contrast(1.12) brightness(1.06);
  transform: scale(1.035);
}

.story-reader[hidden] {
  display: none !important;
}

.story-reader {
  min-height: 100svh;
  scroll-margin-top: var(--header-height);
  background:
    radial-gradient(circle at 18% 0%, rgba(182, 0, 0, 0.14), rgba(182, 0, 0, 0) 30%),
    #030303;
}

.story-reader__top {
  position: sticky;
  top: var(--header-height);
  z-index: 12;
  display: flex;
  justify-content: flex-start;
  padding: 12px clamp(18px, 3vw, 40px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(14px);
}

.story-reader__back {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.64);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-reader__back:hover,
.story-reader__back:focus-visible {
  border-color: var(--gold);
  background: rgba(182, 0, 0, 0.28);
  outline: none;
}

.story-detail__hero {
  height: min(68svh, 620px);
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.64fr);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: #030303;
}

.story-detail__hero-figure {
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #020202;
}

.story-detail__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.1) brightness(1.03);
}

.story-detail--kitsune .story-detail__hero {
  width: min(1100px, calc(100% - clamp(32px, 6vw, 96px)));
  height: min(62svh, 560px);
  min-height: 460px;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  margin: clamp(22px, 3vw, 40px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
}

.story-detail--kitsune .story-detail__hero-figure {
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 221, 166, 0.12), rgba(255, 221, 166, 0) 40%),
    #030303;
}

.story-detail--kitsune .story-detail__hero-image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.story-detail--koi .story-detail__hero {
  width: min(1120px, calc(100% - clamp(32px, 6vw, 96px)));
  height: min(64svh, 590px);
  min-height: 470px;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  margin: clamp(22px, 3vw, 40px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(212, 84, 45, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.story-detail--koi .story-detail__hero-figure {
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(182, 0, 0, 0.24), rgba(182, 0, 0, 0) 45%),
    #030303;
}

.story-detail--koi .story-detail__hero-image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.story-detail--koi .story-detail__hero-copy {
  background:
    radial-gradient(circle at 0% 22%, rgba(182, 0, 0, 0.2), rgba(182, 0, 0, 0) 36%),
    linear-gradient(180deg, rgba(15, 10, 8, 0.97), rgba(3, 3, 3, 0.99));
}

.story-detail--koi .story-detail__name span {
  color: var(--gold);
}

.story-detail--koi .story-gallery__grid {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  max-width: 780px;
}

.story-detail--koi .story-gallery__image {
  height: clamp(260px, 30vw, 420px);
}

.story-detail--ryu .story-detail__hero {
  width: min(1120px, calc(100% - clamp(32px, 6vw, 96px)));
  height: min(64svh, 590px);
  min-height: 470px;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  margin: clamp(22px, 3vw, 40px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.story-detail--ryu .story-detail__hero-figure {
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at 42% 12%, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0) 40%),
    radial-gradient(circle at 22% 52%, rgba(182, 0, 0, 0.14), rgba(182, 0, 0, 0) 42%),
    #030303;
}

.story-detail--ryu .story-detail__hero-image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.story-detail--ryu .story-detail__hero-copy {
  background:
    radial-gradient(circle at 0% 20%, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0) 34%),
    linear-gradient(180deg, rgba(13, 10, 8, 0.97), rgba(3, 3, 3, 0.99));
}

.story-detail--ryu .story-detail__name span {
  color: var(--gold);
}

.story-detail--ryu .story-gallery__grid {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  max-width: 820px;
}

.story-detail--ryu .story-gallery__image {
  height: clamp(250px, 30vw, 410px);
}

.story-detail__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(9px, 1vw, 14px);
  padding: clamp(24px, 3.2vw, 48px);
  background:
    radial-gradient(circle at 0% 30%, rgba(182, 0, 0, 0.18), rgba(182, 0, 0, 0) 34%),
    linear-gradient(180deg, rgba(11, 8, 8, 0.96), rgba(3, 3, 3, 0.98));
}

.story-detail__number {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.story-detail__hero-copy h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.65rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.story-detail__lead {
  max-width: 38ch;
  margin: 0;
  color: rgba(248, 242, 231, 0.86);
  font-size: clamp(0.95rem, 1vw, 1.04rem);
  line-height: 1.62;
}

.story-detail__name {
  display: grid;
  gap: 5px;
  margin-top: 6px;
  padding-left: 18px;
  border-left: 1px solid var(--crimson-bright);
}

.story-detail__name span {
  color: var(--crimson-bright);
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  line-height: 1;
}

.story-detail__name small {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-detail__body {
  width: min(1040px, calc(100% - clamp(36px, 8vw, 132px)));
  margin: 0 auto;
  padding: clamp(36px, 4.5vw, 64px) 0;
  display: grid;
  gap: clamp(28px, 3.5vw, 48px);
}

.story-prose {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(24px, 3.4vw, 46px);
  padding-top: clamp(26px, 3.4vw, 44px);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.story-prose__heading h2,
.story-gallery h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.15vw, 2.65rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.story-prose__copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.story-prose__copy p {
  max-width: 70ch;
  margin: 0;
  color: rgba(248, 242, 231, 0.84);
  font-size: clamp(0.92rem, 0.98vw, 1rem);
  line-height: 1.7;
}

.story-prose__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.story-prose__list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-gallery {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  padding-top: clamp(26px, 3.4vw, 44px);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.story-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.story-gallery__item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  background: #030303;
}

.story-gallery__image {
  width: 100%;
  height: clamp(220px, 22vw, 320px);
  min-height: 0;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.08) brightness(1.02);
}

.story-quote {
  margin: 0;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(182, 0, 0, 0.16), rgba(182, 0, 0, 0) 34%),
    rgba(255, 255, 255, 0.025);
}

.story-quote p {
  max-width: 18ch;
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.55vw, 2.55rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.12;
}

@media (max-width: 980px) {
  .stories-section {
    padding: calc(var(--header-height) + 30px) 20px 54px;
  }

  .stories-section.is-reading {
    padding: var(--header-height) 0 0;
  }

  .stories-index {
    grid-template-columns: repeat(auto-fit, minmax(190px, 270px));
  }

  .story-card {
    min-height: 0;
  }

  .story-card__title {
    font-size: clamp(1.32rem, 6vw, 2rem);
  }

  .story-detail__hero {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-detail__hero-figure {
    min-height: 0;
    height: min(56svh, 520px);
  }

  .story-detail__hero-copy {
    min-height: 0;
    padding: 30px 22px 38px;
  }

  .story-detail__hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.45rem, 11vw, 4.2rem);
  }

  .story-detail--kitsune .story-detail__hero {
    width: calc(100% - 40px);
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-detail--kitsune .story-detail__hero-figure {
    height: min(46svh, 400px);
  }

  .story-detail--koi .story-detail__hero {
    width: calc(100% - 40px);
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-detail--koi .story-detail__hero-figure {
    height: min(48svh, 430px);
  }

  .story-detail--koi .story-gallery__grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .story-detail--ryu .story-detail__hero {
    width: calc(100% - 40px);
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-detail--ryu .story-detail__hero-figure {
    height: min(48svh, 430px);
  }

  .story-detail--ryu .story-gallery__grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .story-detail__body {
    width: calc(100% - 40px);
    padding: 38px 0 58px;
  }

  .story-prose {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 32px;
  }

  .story-prose__heading h2,
  .story-gallery h2 {
    max-width: 13ch;
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .story-prose__copy p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .story-gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .story-gallery__image {
    height: clamp(190px, 58vw, 300px);
    min-height: 0;
    object-fit: contain;
  }

  .story-quote {
    padding: 30px 22px;
  }

  .story-quote p {
    max-width: 14ch;
    font-size: clamp(1.55rem, 7.5vw, 2.65rem);
  }
}

@media (max-width: 560px) {
  .stories-heading {
    text-align: left;
  }

  .stories-heading h2 {
    font-size: clamp(1.95rem, 9.5vw, 2.85rem);
  }

  .story-card {
    min-height: 0;
  }

  .story-card__content {
    padding: 18px;
  }

  .story-prose__list {
    grid-template-columns: 1fr;
  }

  .story-reader__top {
    top: 66px;
    padding-inline: 14px;
  }

  .story-reader__back {
    width: 100%;
    justify-content: center;
  }
}

/* Final cinematic panels for Services, About and Contact only */
.custom-designs,
.about,
.contact {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 36px) clamp(28px, 3vw, 48px) clamp(42px, 5vw, 72px);
  background: var(--bg);
}

body[data-page="services"] #custom-designs,
body[data-page="about"] #about,
body[data-page="contact"] #contact {
  display: grid !important;
}

.custom-designs > .section__inner,
.about > .section__inner,
.contact > .section__inner {
  width: min(1460px, calc(100vw - clamp(56px, 6vw, 96px)));
}

.custom-designs::before,
.about::before,
.contact::before {
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.18) contrast(1.16) brightness(1.04);
}

.custom-designs::before {
  background-position: 45% center;
}

.about::before {
  background-position: 39% center;
  filter: saturate(1.22) contrast(1.22) brightness(1.06);
}

.contact::before {
  background-position: center center;
  filter: saturate(1.16) contrast(1.18) brightness(1.1);
}

.custom-designs::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.08) 0%, rgba(3, 3, 3, 0.2) 48%, rgba(3, 3, 3, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.24) 0%, rgba(3, 3, 3, 0.02) 46%, rgba(3, 3, 3, 0.28) 100%);
}

.about::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.04) 0%, rgba(3, 3, 3, 0.16) 46%, rgba(3, 3, 3, 0.78) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.18) 0%, rgba(3, 3, 3, 0.02) 48%, rgba(3, 3, 3, 0.26) 100%);
}

.contact::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.58) 0%, rgba(3, 3, 3, 0.18) 46%, rgba(3, 3, 3, 0.68) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.22) 0%, rgba(3, 3, 3, 0.04) 44%, rgba(3, 3, 3, 0.52) 100%),
    radial-gradient(circle at 50% 55%, rgba(182, 0, 0, 0.11), rgba(182, 0, 0, 0) 42%);
}

.custom-designs__grid {
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 0.9fr);
  gap: clamp(72px, 8vw, 120px);
  align-items: center;
}

.custom-designs__copy {
  max-width: 550px;
}

.custom-designs__note,
.custom-designs__tags span {
  background: rgba(3, 3, 3, 0.34);
  backdrop-filter: blur(8px);
}

.request-form {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(25, 15, 12, 0.7);
  backdrop-filter: blur(12px);
}

.custom-designs .request-form {
  gap: 12px;
  padding: 20px;
}

.custom-designs .form-grid {
  gap: 12px;
}

.custom-designs .request-form label {
  gap: 6px;
  font-size: 0.88rem;
}

.custom-designs .request-form input,
.custom-designs .request-form select {
  min-height: 42px;
  padding: 9px 12px;
}

.custom-designs .request-form textarea {
  min-height: 0;
  padding: 10px 12px;
}

.custom-designs .request-form textarea[name="meaning"] {
  height: 108px;
}

.custom-designs .request-form textarea[name="references"] {
  height: 88px;
}

.custom-designs .form-discord {
  min-height: 0;
  padding: 12px;
}

.custom-designs .form-discord span {
  font-size: 0.88rem;
}

.custom-designs .form-status {
  min-height: 20px;
}

.about__grid {
  grid-template-columns: minmax(48%, 1fr) minmax(560px, 0.8fr);
  grid-template-rows: auto auto auto;
  gap: 20px clamp(48px, 6vw, 84px);
  align-content: center;
  align-items: start;
}

.about__copy,
.about__metrics,
.about__statement {
  grid-column: 2;
}

.about__copy {
  max-width: 620px;
}

.about__copy h2 {
  max-width: 12.5ch;
}

.about__copy p {
  color: rgba(248, 242, 231, 0.86);
}

.about__metrics {
  margin-top: 8px;
}

.about__metrics div {
  min-height: 150px;
  background: rgba(3, 3, 3, 0.36);
  backdrop-filter: blur(8px);
}

.about__statement {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 0;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(182, 0, 0, 0.32);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.38);
  backdrop-filter: blur(10px);
}

.about__statement-mark {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  opacity: 0.78;
}

.about__statement-mark::before {
  content: "✿";
  color: rgba(235, 18, 24, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.8rem;
  line-height: 1;
}

.about__statement-copy {
  display: grid;
  gap: 10px;
}

.about__statement-copy p {
  margin: 0;
  color: rgba(248, 242, 231, 0.86);
}

.about__signature {
  padding-top: 10px;
  color: var(--crimson-bright) !important;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.65rem;
  line-height: 1;
}

.about__signature-role {
  color: var(--muted-strong) !important;
}

.contact__grid {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  gap: 0;
  align-items: center;
}

.contact__copy {
  max-width: 580px;
  padding-left: clamp(92px, 12vw, 178px);
}

.contact__copy h2 {
  max-width: 20ch;
}

.contact-form {
  width: 100%;
  max-width: 560px;
  justify-self: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.018)),
    rgba(8, 7, 10, 0.84);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.about > .section__inner::before,
.contact > .section__inner::before {
  content: "赤い花デザイン";
  position: absolute;
  left: 0;
  top: clamp(92px, 14vh, 150px);
  z-index: 2;
  color: rgba(235, 18, 24, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  letter-spacing: 0.18em;
  line-height: 1.4;
  writing-mode: vertical-rl;
  text-orientation: upright;
  pointer-events: none;
}

.about > .section__inner::after,
.contact > .section__inner::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 38px;
  width: 1px;
  height: min(34vh, 340px);
  background: rgba(235, 18, 24, 0.72);
  pointer-events: none;
}

.about > .section__inner::before {
  left: calc(50% + clamp(36px, 3vw, 64px));
  top: clamp(104px, 14vh, 148px);
  color: rgba(235, 18, 24, 0.9);
  text-shadow: 0 0 18px rgba(235, 18, 24, 0.18), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.about > .section__inner::after {
  left: calc(50% + clamp(44px, 3vw, 72px));
  top: clamp(54px, 8vh, 96px);
  background: linear-gradient(180deg, rgba(235, 18, 24, 0.86), rgba(235, 18, 24, 0.42));
}

.contact > .section__inner::before,
.contact > .section__inner::after {
  display: none;
}

@media (max-width: 1180px) {
  .custom-designs__grid,
  .contact__grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(470px, 0.95fr);
    gap: clamp(42px, 5vw, 72px);
  }

  .contact__grid {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
    gap: 0;
  }

  .about__grid {
    grid-template-columns: minmax(40%, 1fr) minmax(500px, 0.95fr);
  }

  .about > .section__inner::before,
  .about > .section__inner::after {
    display: none;
  }

  .contact__copy {
    padding-left: clamp(58px, 8vw, 100px);
  }
}

@media (max-width: 980px) {
  .custom-designs,
  .about,
  .contact {
    min-height: 100svh;
    padding: calc(var(--header-height) + 28px) 20px 56px;
    align-items: start;
  }

  .custom-designs > .section__inner,
  .about > .section__inner,
  .contact > .section__inner {
    width: min(100%, 720px);
  }

  .custom-designs__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__copy,
  .about__metrics,
  .about__statement {
    grid-column: 1;
  }

  .custom-designs__copy,
  .about__copy,
  .contact__copy {
    max-width: 640px;
  }

  .contact__copy {
    padding-left: 0;
  }

  .request-form,
  .contact-form {
    max-width: none;
    justify-self: stretch;
  }

  .about > .section__inner::before,
  .about > .section__inner::after,
  .contact > .section__inner::before,
  .contact > .section__inner::after {
    display: none;
  }

  .custom-designs::before {
    background-position: 42% center;
  }

  .about::before {
    background-position: 31% center;
  }

  .contact::before {
    background-position: center center;
  }
}

@media (max-width: 680px) {
  .custom-designs,
  .about,
  .contact {
    padding: calc(var(--header-height) + 22px) 18px 48px;
  }

  .custom-designs::after,
  .about::after,
  .contact::after {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.62) 0%, rgba(3, 3, 3, 0.24) 42%, rgba(3, 3, 3, 0.78) 100%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.3), rgba(3, 3, 3, 0.18));
  }

  .contact::after {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.5) 0%, rgba(3, 3, 3, 0.18) 42%, rgba(3, 3, 3, 0.72) 100%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.42), rgba(3, 3, 3, 0.16)),
      radial-gradient(circle at 50% 36%, rgba(182, 0, 0, 0.12), rgba(182, 0, 0, 0) 44%);
  }

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

  .about__metrics div {
    min-height: 112px;
    padding: 14px 10px;
  }

  .about__metrics strong {
    font-size: clamp(1.65rem, 10vw, 2.25rem);
  }

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

  .about__statement-mark {
    width: 92px;
  }
}

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

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

