:root {
  --black: #090909;
  --charcoal: #111111;
  --ash: #1b1a18;
  --cream: #f2e6d8;
  --muted: #c9b7a5;
  --gold: #f0b33d;
  --red: #9d1f22;
  --line: rgb(242 230 216 / 0.16);
  font-family:
    Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--cream);
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.4vw, 18px);
  min-height: 88px;
  padding: 16px clamp(18px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgb(9 9 9 / 0.78);
  backdrop-filter: blur(14px);
}

.logo {
  display: grid;
  flex: 0 0 auto;
  gap: 4px;
  color: var(--gold);
  font-weight: 900;
  font-size: clamp(1.08rem, 1.45vw, 1.58rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.logo span:last-child {
  color: var(--cream);
  font-size: clamp(0.64rem, 0.8vw, 0.84rem);
  font-weight: 800;
}

.social-block {
  display: grid;
  align-items: start;
  justify-content: start;
  flex: 0 1 auto;
  gap: 5px;
  min-width: 0;
  width: auto;
  max-width: none;
  margin-right: clamp(12px, 2vw, 28px);
}

.social-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px 8px;
  color: rgb(242 230 216 / 0.82);
  font-size: clamp(0.76rem, 0.84vw, 0.9rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  color: #f2e6d8;
  text-decoration: none;
  white-space: nowrap;
}

.social-link img {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 1;
  visibility: visible;
  filter: none;
}

.social-link span {
  white-space: nowrap;
}

.social-links a:hover {
  color: var(--gold);
}

.social-links a:hover img {
  filter: sepia(1) saturate(1.8) hue-rotate(344deg) brightness(1.14);
}

.studio-address {
  margin: 0;
  color: var(--gold);
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
  text-transform: uppercase;
}

.studio-address a {
  color: inherit;
  text-decoration: none;
}

.studio-address a:hover {
  color: var(--cream);
}

.nav-links {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-left: auto;
  gap: 8px clamp(8px, 1.1vw, 14px);
  font-size: clamp(0.72rem, 0.8vw, 0.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a {
  color: rgb(242 230 216 / 0.82);
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-group {
  position: relative;
  padding: 12px 0;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  display: grid;
  min-width: 200px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgb(9 9 9 / 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.dropdown a {
  padding: 9px;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: clamp(130px, 13vw, 180px) clamp(24px, 6vw, 72px) clamp(58px, 7vw, 92px);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 28%, rgb(157 31 34 / 0.32), transparent 32%),
    linear-gradient(90deg, rgb(9 9 9 / 0.96) 0%, rgb(9 9 9 / 0.72) 46%, rgb(9 9 9 / 0.25) 100%),
    linear-gradient(0deg, rgb(9 9 9 / 0.88), transparent 44%);
}

.hero-content {
  position: relative;
  max-width: 880px;
}

.page {
  padding-top: 96px;
}

.page-hero {
  min-height: 54vh;
  display: grid;
  align-content: end;
  padding: clamp(96px, 11vw, 160px) clamp(24px, 6vw, 72px) clamp(48px, 7vw, 82px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.62)),
    url("./assets/tattoo-collage.jpeg") center/cover;
}

.page-hero-humanism {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.58)),
    url("./assets/humanism/humanism-01.jpg") center/cover;
}

.page-hero-nerd {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.58)),
    url("./assets/nerd/nerd-cover.webp") center/cover;
}

.page-hero-futurism {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.58)),
    url("./assets/futurism/futurism-01.jpg") center/cover;
}

.page-hero-animals {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.58)),
    url("./assets/animals/animals-01.jpg") center/cover;
}

.page-hero-japanography {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.58)),
    url("./assets/japanography/japanography-01.jpg") center/cover;
}

.page-hero-shadows {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.58)),
    url("./assets/shadows/shadows-01.jpg") center/cover;
}

.page-hero-dark {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.58)),
    url("./assets/dark/dark-cover.jpg") center/cover;
}

.page-hero-booking {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.52)),
    url("./assets/tattoo-collage.jpeg") center/cover;
}

.page-hero-shop {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.95), rgb(9 9 9 / 0.58)),
    url("./assets/dioramas-and-art-toys/robochick/robochick-03.jpeg") center/cover;
}

.page-hero-dioramas {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.48)),
    url("./assets/dioramas-and-art-toys/launch-time/launch-time-03.jpeg") center/cover;
}

.page-hero-lunch-time {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.46)),
    url("./assets/dioramas-and-art-toys/launch-time/launch-time-01.jpeg") center/cover;
}

.page-hero-robochick {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.42)),
    url("./assets/dioramas-and-art-toys/robochick/robochick-03.jpeg") center/cover;
}

.page-hero-a-good-day {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.42)),
    url("./assets/dioramas-and-art-toys/a-good-day/a-good-day-01.jpeg") center/cover;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.9rem, 8.6vw, 7.1rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.55vw, 1.12rem);
  line-height: 1.48;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 9.5ch;
  margin: 0;
  color: var(--gold);
  font-size: clamp(3.7rem, 9vw, 7.2rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.35rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.hero p:not(.eyebrow),
.section-copy > p,
.booking p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.55vw, 1.14rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 0 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--black);
}

.button-ghost:hover {
  background: var(--gold);
  color: var(--black);
}

.intro-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.intro-strip a {
  flex: 1 1 180px;
  padding: 18px 22px;
  background: var(--charcoal);
  color: rgb(242 230 216 / 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.intro-strip a:hover {
  background: var(--gold);
  color: var(--black);
}

.section {
  padding: clamp(70px, 9vw, 116px) clamp(24px, 6vw, 72px);
}

#about,
#tattoos,
#humanism,
#nerd,
#animals,
#japanography,
#misc,
#artwork,
#consultation {
  scroll-margin-top: 130px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.portrait-panel {
  border: 1px solid var(--line);
  background: var(--ash);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: none;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.detail-grid div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--charcoal);
}

.detail-grid strong {
  color: var(--gold);
  text-transform: uppercase;
}

.detail-grid span {
  color: var(--muted);
}

.work {
  background: #0f0f0f;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.art-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.project-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  display: grid;
  min-height: 520px;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ash);
  padding: 22px;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  opacity: 0.72;
  transition:
    transform 2600ms ease,
    filter 900ms ease,
    opacity 2600ms ease;
  will-change: opacity, transform;
}

.category-card img.category-card-image.is-hidden {
  opacity: 0.48;
  transform: scale(1.006);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgb(9 9 9 / 0.94), rgb(9 9 9 / 0.18) 62%),
    linear-gradient(90deg, rgb(157 31 34 / 0.28), transparent 48%);
}

.category-card:hover img {
  transform: scale(1.035);
  filter: none;
  opacity: 0.86;
}

.category-card span,
.category-card h3,
.category-card p {
  position: relative;
  z-index: 1;
}

.category-card span {
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 900;
}

.category-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 0.95;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.project-index .category-card {
  min-height: 560px;
  text-decoration: none;
}

.home-grid,
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.contact-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-options .feature-link {
  padding: clamp(26px, 4vw, 44px);
}

.feature-link {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--charcoal);
}

.feature-link span,
.shop-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-link strong {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-options .feature-link strong {
  max-width: 100%;
  font-size: clamp(1.38rem, 2.35vw, 2.45rem);
  overflow-wrap: anywhere;
}

.feature-link:hover {
  background: var(--red);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ash);
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1);
  transition:
    transform 2600ms ease,
    opacity 900ms ease;
}

figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgb(9 9 9 / 0.78);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.project-showcase + .project-showcase {
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 6vw, 82px);
}

.project-copy {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 18px;
}

.project-copy h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.project-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.55;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-purchase {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.project-purchase span {
  color: var(--cream);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 900;
}

.project-purchase .button {
  min-height: 44px;
  padding: 12px 18px;
}

.project-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-gallery figure {
  min-height: 360px;
}

.project-gallery figure:first-child {
  grid-column: 1 / -1;
  min-height: 520px;
}

.humanism-gallery,
.interactive-gallery {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.humanism-gallery figure,
.interactive-gallery figure {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.gallery-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 2600ms ease,
    opacity 900ms ease;
}

.gallery-button:hover img,
.gallery-button:focus-visible img {
  transform: scale(1.055);
  opacity: 0.88;
}

.gallery-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 70px;
  background: rgb(0 0 0 / 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgb(0 0 0 / 0.65);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(9 9 9 / 0.72);
  color: var(--cream);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--black);
}

.booking-panel,
.post-list,
.shop-grid,
.payment-grid {
  display: grid;
  gap: 16px;
}

.booking-panel {
  max-width: 900px;
}

.booking-panel h2,
.post-list h2,
.shop-grid h2,
.payment-grid h2 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.booking-panel p,
.post-list p,
.shop-grid p,
.payment-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.consultation-form,
.consultation-side {
  padding: clamp(28px, 5vw, 56px);
  background: var(--charcoal);
}

.form-intro {
  margin-bottom: 30px;
}

.form-intro h2,
.calendar-card h2 {
  max-width: 10ch;
  font-size: clamp(2.1rem, 4.6vw, 4.8rem);
}

.form-intro p:not(.eyebrow),
.calendar-card p:not(.eyebrow),
.form-note,
.calendar-note {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full,
.checkbox-field.full {
  grid-column: 1 / -1;
}

.form-field span,
.checkbox-field span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.checkbox-field a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #090909;
  color: var(--cream);
  font: inherit;
  padding: 14px 15px;
  outline: 0;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgb(242 230 216 / 0.42);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgb(9 9 9 / 0.72);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--gold);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 24px;
}

.form-note {
  max-width: 360px;
  margin: 0;
  font-size: 0.95rem;
}

.hidden-field {
  display: none;
}

.consultation-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.calendar-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(157 31 34 / 0.2), transparent 44%),
    var(--black);
}

.calendar-card .button {
  width: 100%;
}

.calendar-note {
  margin: 0;
  font-size: 0.92rem;
}

.booking-steps {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.booking-steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--black);
}

.booking-steps span {
  color: var(--red);
  font-weight: 900;
}

.booking-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.legal-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 280px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--charcoal);
}

.legal-card h2 {
  max-width: 12ch;
  font-size: clamp(1.8rem, 4vw, 4rem);
}

.legal-card p,
.legal-card li,
.legal-list dd,
.legal-small {
  color: var(--muted);
  line-height: 1.6;
}

.legal-card a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.legal-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.legal-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--black);
}

.legal-list dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
}

.legal-small {
  margin: 0;
  font-size: 0.92rem;
}

.post-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-list article,
.shop-grid article,
.payment-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.shop-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.payment-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.payment-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-grid .button,
.payment-grid .button {
  margin-top: 12px;
  width: 100%;
}

.shop-intro .section-heading p {
  color: var(--muted);
  line-height: 1.6;
}

.ecwid-shop-section {
  background: var(--black);
}

.ecwid-store-panel {
  min-height: 520px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid var(--line);
  background: #f7f2ec;
  color: #111;
}

.ecwid-store-panel a {
  color: inherit;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shop-category-index {
  padding-top: clamp(54px, 7vw, 86px);
}

.shop-product-section {
  scroll-margin-top: 130px;
}

.shop-product-section + .shop-product-section {
  border-top: 1px solid var(--line);
}

.shop-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.shop-product-card-muted {
  opacity: 0.9;
}

.shop-product-media {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.shop-product-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 2600ms ease;
}

.shop-product-card:hover .shop-product-media img {
  transform: scale(1.035);
}

.shop-product-body {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
}

.shop-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-tag-row strong {
  color: var(--cream);
}

.shop-product-body h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.7vw, 2.45rem);
}

.shop-product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.shop-product-body .shop-price {
  color: var(--cream);
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.shop-card-actions .button {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
}

.shop-empty {
  display: grid;
  gap: 12px;
  max-width: 720px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.shop-empty span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-empty h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.shop-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.shop-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.shop-note-grid article {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--black);
}

.shop-note-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.shop-note-grid h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

.shop-note-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.checkout-price-box {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgb(9 9 9 / 0.72);
}

.checkout-price-box span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-price-box strong {
  color: var(--cream);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.checkout-selected-panel {
  display: grid;
  grid-template-columns: minmax(140px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
  margin-bottom: 26px;
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-selected-media {
  display: block;
  min-height: 224px;
  overflow: hidden;
  background: var(--charcoal);
}

.checkout-selected-media img {
  width: 100%;
  height: 100%;
  min-height: 224px;
  object-fit: cover;
  transition: transform 2600ms ease;
}

.checkout-selected-media:hover img {
  transform: scale(1.04);
}

.checkout-selected-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.checkout-selected-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-selected-copy h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.25vw, 1.82rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.checkout-selected-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.checkout-selected-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkout-selected-meta strong {
  color: var(--gold);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.checkout-selected-meta a {
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-selected-meta a:hover {
  color: var(--gold);
}

.checkout-summary dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.checkout-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: var(--charcoal);
}

.checkout-summary dt,
.checkout-summary dd {
  margin: 0;
}

.checkout-summary dt {
  color: var(--muted);
}

.checkout-summary dd {
  color: var(--cream);
  font-weight: 900;
}

.shop-inquiry-form .form-intro h2,
.checkout-summary h2 {
  max-width: 100%;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 1;
}

.shop-inquiry-form .form-intro p:not(.eyebrow),
.shop-inquiry-form .form-note,
.checkout-summary .calendar-note {
  font-size: 0.92rem;
}

.shop-inquiry-form .form-field span,
.shop-inquiry-form .checkbox-field span {
  font-size: 0.7rem;
}

.shop-inquiry-form .form-field input,
.shop-inquiry-form .form-field select,
.shop-inquiry-form .form-field textarea {
  font-size: 0.92rem;
}

.checkout-payment-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.checkout-payment-tab {
  display: grid;
  gap: 4px;
  min-height: 58px;
  align-content: center;
  border: 1px solid var(--line);
  padding: 10px;
  background: rgb(9 9 9 / 0.72);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  text-align: center;
  text-transform: uppercase;
}

.checkout-payment-tab strong {
  color: var(--gold);
  font-size: 0.74rem;
  line-height: 1.05;
}

.checkout-payment-tab span {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1.05;
}

.checkout-payment-tab:hover,
.checkout-payment-tab.is-active {
  border-color: var(--gold);
  background: rgb(240 179 61 / 0.14);
}

.shop-inquiry-form .button {
  font-size: 0.72rem;
}

.checkout-summary dt,
.checkout-summary dd {
  font-size: 0.9rem;
  line-height: 1.25;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 80px);
}

.artwork {
  background:
    linear-gradient(90deg, rgb(9 9 9 / 0.92), rgb(9 9 9 / 0.72)),
    url("./assets/tattoo-collage.jpeg") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.artwork p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.process > h2 {
  max-width: 760px;
}

.process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--black);
}

.process-list span {
  color: var(--red);
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking {
  display: flex;
  gap: 34px;
  align-items: end;
  justify-content: space-between;
  padding: clamp(70px, 9vw, 118px) clamp(24px, 6vw, 72px);
  background: var(--red);
}

.booking .eyebrow {
  color: var(--black);
}

.booking p {
  color: rgb(255 242 226 / 0.86);
}

.about-me-page {
  background:
    linear-gradient(90deg, rgb(5 5 5 / 0.94), rgb(5 5 5 / 0.72)),
    url("./assets/tattoo-collage.jpeg") center / cover fixed;
}

.about-me-dossier {
  min-height: 100vh;
  padding-top: 110px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  grid-template-areas:
    "portrait story"
    "portrait details";
  border-top: 1px solid rgb(240 179 61 / 0.24);
}

.about-me-image-panel {
  grid-area: portrait;
  position: relative;
  min-height: calc(100vh - 110px);
  padding: clamp(18px, 2.6vw, 34px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  border-right: 1px solid rgb(240 179 61 / 0.22);
  background:
    linear-gradient(180deg, rgb(12 12 12 / 0.64), rgb(0 0 0 / 0.92)),
    var(--black);
}

.about-me-image-panel img {
  width: min(100%, 900px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  border: 1px solid rgb(240 179 61 / 0.2);
  background: #050505;
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.46);
}

.about-me-image-panel::after {
  display: none;
}

.about-me-name {
  position: static;
  z-index: 1;
  width: min(100%, 900px);
  max-width: 640px;
  text-transform: uppercase;
}

.about-me-name strong {
  display: block;
  color: var(--cream);
  font-size: clamp(3.4rem, 5.8vw, 6.4rem);
  line-height: 0.78;
  font-weight: 900;
}

.about-me-name span {
  display: block;
  max-width: 520px;
  margin-top: 18px;
  color: var(--cream);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.about-me-copy,
.about-me-details {
  padding: clamp(34px, 5vw, 58px);
  background: rgb(8 8 8 / 0.76);
  border-right: 1px solid rgb(240 179 61 / 0.18);
}

.about-me-copy {
  grid-area: story;
}

.about-me-details {
  grid-area: details;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgb(240 179 61 / 0.16);
}

.about-me-copy h1 {
  margin: 18px 0 24px;
  color: var(--gold);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.about-me-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.visual-language {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.visual-language span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgb(240 179 61 / 0.26);
  color: var(--cream);
  font-size: 0.78rem;
  text-align: center;
  text-transform: uppercase;
}

.about-me-disciplines {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1.8;
}

.about-me-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(24px, 6vw, 72px);
  color: rgb(242 230 216 / 0.62);
  font-size: 0.88rem;
}

footer a {
  color: var(--gold);
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 100%;
  }

  .social-block {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    max-width: none;
    margin-right: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .social-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 82vh;
    padding-top: 170px;
  }

  .page-hero {
    min-height: 48vh;
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 5.4rem);
  }

  .about,
  .section-heading,
  .process,
  .consultation-layout,
  .legal-layout,
  .detail-grid,
  .home-grid,
  .contact-options,
  .gallery,
  .shop-product-grid,
  .shop-note-grid,
  .shop-grid,
  .payment-grid,
  .art-categories,
  .project-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .about-me-dossier {
    grid-template-columns: 1fr;
    grid-template-areas:
      "portrait"
      "story"
      "details";
    padding-top: 138px;
  }

  .about-me-image-panel {
    min-height: auto;
    padding: 24px;
    border-right: 0;
  }

  .about-me-image-panel img {
    max-height: none;
  }

  .about-me-copy,
  .about-me-details {
    border-right: 0;
    padding: 42px 24px;
  }

  .visual-language {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }

  .project-copy {
    position: static;
  }

  .category-card {
    min-height: 430px;
  }

  .booking,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .nav-links {
    justify-content: flex-start;
    max-width: none;
    font-size: 0.68rem;
  }

  .social-block {
    min-width: 0;
    max-width: none;
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-address {
    white-space: normal;
  }

  .social-link img {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: 78vh;
    padding-top: 210px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .page-hero {
    min-height: 44vh;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .section,
  .booking {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .about-me-name strong {
    font-size: clamp(3.2rem, 20vw, 5.4rem);
  }

  .about-me-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }


  .legal-list div {
    grid-template-columns: 1fr;
  }

  .art-categories {
    grid-template-columns: 1fr;
  }

  .home-grid,
  .contact-options,
  .gallery,
  .form-grid,
  .shop-product-grid,
  .shop-note-grid,
  .shop-grid,
  .payment-grid,
  .project-index {
    grid-template-columns: 1fr;
  }

  .shop-card-actions {
    grid-template-columns: 1fr;
  }

  .checkout-price-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-selected-panel {
    grid-template-columns: 1fr;
  }

  .checkout-payment-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-selected-media,
  .checkout-selected-media img {
    min-height: 260px;
  }

  .project-gallery figure,
  .project-gallery figure:first-child {
    min-height: 380px;
  }
}
