:root {
  --bg: #07030f;
  --bg-soft: #13091f;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #fff8f2;
  --muted: #cabdcc;
  --line: rgba(255, 248, 242, 0.17);
  --gold: #ffd166;
  --red: #ff3d77;
  --violet: #8b5cf6;
  --cyan: #33e6ff;
  --lime: #b7ff5a;
  --ink: #101010;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
  --radius: 28px;
  --display: "Unbounded", "Inter", sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 61, 119, 0.38), transparent 34%),
    radial-gradient(circle at 82% 2%, rgba(51, 230, 255, 0.3), transparent 28%),
    radial-gradient(circle at 50% 44%, rgba(139, 92, 246, 0.18), transparent 42%),
    linear-gradient(180deg, #07030f 0%, #13091f 42%, #07030f 100%);
  font-family: var(--body);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mix-blend-mode: overlay;
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(51, 230, 255, 0.19), rgba(255, 61, 119, 0.12), transparent 64%);
  transition: opacity 220ms ease;
}

.site-header {
  position: fixed;
  left: 50%;
  top: 18px;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(51, 230, 255, 0.38);
  background: rgba(7, 3, 15, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.brand,
.site-footer > div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(51, 230, 255, 0.62);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--display);
  box-shadow: 0 0 30px rgba(51, 230, 255, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: #120d08;
  background: linear-gradient(135deg, var(--gold), #ff8a00);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: center;
  padding: 132px 0 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.07em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 9vw, 8.7rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 5.2rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions,
.trust-row,
.filter-bar,
.style-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 177, 106, 0.52);
}

.button.primary {
  border-color: transparent;
  color: #140f08;
  background: linear-gradient(135deg, var(--cyan), #ff4fd8 48%, var(--gold));
  box-shadow: 0 16px 50px rgba(255, 61, 119, 0.28);
}

.button.ghost {
  background: rgba(139, 92, 246, 0.11);
}

.trust-row {
  margin-top: 36px;
  color: var(--muted);
}

.trust-row span {
  min-width: 134px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-row strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.32rem;
}

.hero-art {
  position: relative;
  min-height: 660px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.orb-one {
  inset: 10% auto auto 12%;
  width: 260px;
  height: 260px;
  background: rgba(255, 61, 119, 0.28);
}

.orb-two {
  right: 4%;
  bottom: 14%;
  width: 210px;
  height: 210px;
  background: rgba(51, 230, 255, 0.22);
}

.tattoo-card {
  position: absolute;
  inset: 48px 24px auto auto;
  width: min(420px, 90%);
  min-height: 580px;
  padding: 20px;
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 20% 0%, rgba(255, 61, 119, 0.2), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(51, 230, 255, 0.16), transparent 38%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tattoo-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 177, 106, 0.18);
  border-radius: 26px;
}

.card-tag,
.gallery-meta span,
.artist-card span,
.booking-result span,
.mega-meta span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ink-sketch {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 440px;
  place-items: center;
}

.ink-sketch svg {
  width: min(100%, 360px);
  overflow: visible;
}

.line,
.petal {
  fill: none;
  stroke: #f7efe1;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 2.6s ease forwards;
}

.petal {
  stroke: var(--red);
  stroke-width: 5;
  animation-delay: 0.4s;
}

.dot {
  fill: var(--cyan);
  opacity: 0;
  animation: pop 400ms ease forwards 1.7s;
}

.card-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.card-caption span {
  color: var(--muted);
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 72px;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(216, 177, 106, 0.28);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-note span,
.floating-note small {
  display: block;
  color: var(--muted);
}

.floating-note strong {
  display: block;
  margin: 6px 0;
  font-family: var(--display);
  font-size: 3rem;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 61, 119, 0.12), rgba(51, 230, 255, 0.1), rgba(255, 209, 102, 0.1));
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.marquee span {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  -webkit-text-stroke: 1px rgba(245, 241, 232, 0.35);
}

.manifesto,
.style-lab,
.portfolio,
.real-gallery,
.artists,
.process,
.booking,
.care {
  padding: 112px 0;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.manifesto p:last-child,
.booking-panel > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.4fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.style-tabs,
.filter-bar {
  margin-bottom: 22px;
}

.style-tab,
.filter,
.gallery-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.style-tab.active,
.filter.active,
.gallery-filter.active,
.style-tab:hover,
.filter:hover,
.gallery-filter:hover {
  color: var(--text);
  border-color: rgba(51, 230, 255, 0.56);
  background: linear-gradient(135deg, rgba(255, 61, 119, 0.18), rgba(51, 230, 255, 0.14));
}

.style-stage {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.style-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(51, 230, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(255, 61, 119, 0.28), rgba(139, 92, 246, 0.16));
}

.style-number {
  position: absolute;
  left: 24px;
  top: 24px;
  color: rgba(245, 241, 232, 0.28);
  font-family: var(--display);
}

.style-symbol {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(3.8rem, 12vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(245, 241, 232, 0.8);
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.45));
}

.style-content {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 6vw, 70px);
}

.style-content p,
.style-content li,
.timeline p,
.artist-card p,
.accordion p,
.booking-result p {
  color: var(--muted);
  line-height: 1.75;
}

.style-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.style-content li {
  position: relative;
  padding-left: 22px;
}

.style-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--red));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.06);
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(51, 230, 255, 0.52);
}

.gallery-item:hover img {
  filter: saturate(1.34) contrast(1.1);
  transform: scale(1.08);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(216, 177, 106, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
}

.gallery-art::before,
.gallery-art::after,
.artist-photo::before,
.artist-photo::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(245, 241, 232, 0.75);
  border-radius: 48% 52% 44% 56%;
  transform: rotate(var(--rotate, 0deg));
}

.gallery-art::after,
.artist-photo::after {
  inset: 32%;
  border-color: rgba(216, 177, 106, 0.9);
  border-radius: 50%;
  transform: rotate(calc(var(--rotate, 0deg) * -1));
}

.art-serpent {
  --rotate: 28deg;
}

.art-moon {
  --rotate: -18deg;
}

.art-eye {
  --rotate: 8deg;
}

.art-raven {
  --rotate: 45deg;
}

.art-flower {
  --rotate: -35deg;
}

.art-statue {
  --rotate: 14deg;
}

.art-eye::after {
  border-radius: 8px 80px;
}

.art-raven::before {
  clip-path: polygon(50% 0, 94% 100%, 50% 76%, 6% 100%);
}

.gallery-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(18px);
}

.real-gallery {
  border-top: 1px solid var(--line);
}

.gallery-toolbar {
  position: sticky;
  top: 92px;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 3, 15, 0.78);
  backdrop-filter: blur(18px);
}

.mega-gallery-grid {
  column-count: 4;
  column-gap: 16px;
}

.mega-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  overflow: hidden;
  cursor: zoom-in;
  break-inside: avoid;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mega-card:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  border-color: rgba(255, 61, 119, 0.52);
  box-shadow: 0 24px 70px rgba(255, 61, 119, 0.16);
}

.mega-card.is-hidden {
  display: none;
}

.mega-card img {
  display: block;
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.05);
  transition: transform 520ms ease, filter 520ms ease;
}

.mega-card:hover img {
  filter: saturate(1.45) contrast(1.1);
  transform: scale(1.06);
}

.mega-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 248, 242, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(7, 3, 15, 0.78), rgba(7, 3, 15, 0.48));
  backdrop-filter: blur(18px);
}

.mega-meta strong {
  font-size: 0.9rem;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.artist-card {
  display: grid;
  gap: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.artist-photo {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 20%, rgba(51, 230, 255, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 61, 119, 0.24), rgba(139, 92, 246, 0.14));
  overflow: hidden;
}

.artist-card h3 {
  margin: 12px 0;
}

.photo-two {
  filter: hue-rotate(28deg);
}

.photo-three {
  filter: hue-rotate(-24deg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.timeline span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 72px;
  place-items: center;
  border: 1px solid rgba(216, 177, 106, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--display);
}

.booking-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.62fr;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(51, 230, 255, 0.25);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 61, 119, 0.3), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(51, 230, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(245, 241, 232, 0.84);
  font-weight: 800;
}

.booking-form select,
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(5, 5, 5, 0.48);
  outline: none;
}

.booking-form select,
.booking-form textarea {
  padding: 14px 15px;
}

.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(216, 177, 106, 0.55);
}

.booking-form input[type="range"] {
  accent-color: var(--red);
}

.range-value {
  color: var(--gold);
  font-size: 0.9rem;
}

.booking-result {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(5, 5, 5, 0.42);
}

.booking-result strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  overflow: hidden;
}

.accordion-item button {
  width: 100%;
  border: 0;
  padding: 22px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.accordion-item p {
  display: none;
  margin: 0;
  padding: 0 22px 22px;
}

.accordion-item.open p {
  display: block;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(7, 3, 15, 0.88);
  backdrop-filter: blur(18px);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  border: 1px solid rgba(51, 230, 255, 0.34);
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62);
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 20px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--text);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pop {
  to {
    opacity: 1;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(5, 5, 5, 0.92);
  }

  .site-nav.open {
    display: grid;
  }

  .hero,
  .manifesto,
  .style-stage,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 560px;
  }

  .tattoo-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .gallery-grid,
  .artist-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-gallery-grid {
    column-count: 3;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 118px;
  }

  .hero-art {
    min-height: 520px;
  }

  .tattoo-card {
    min-height: 510px;
  }

  .floating-note {
    left: 10px;
    bottom: 36px;
  }

  .manifesto,
  .style-lab,
  .portfolio,
  .real-gallery,
  .artists,
  .process,
  .booking,
  .care {
    padding: 74px 0;
  }

  .gallery-grid,
  .artist-grid,
  .timeline {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .timeline article {
    min-height: 220px;
  }

  .timeline span {
    margin-bottom: 44px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mega-gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 460px) {
  .mega-gallery-grid {
    column-count: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
