:root {
  --bg: #0d0d0f;
  --bg-soft: #151518;
  --ink: #f8f6f1;
  --muted: #c5c2bb;
  --paper: #fbfaf7;
  --paper-muted: #ece8df;
  --charcoal: #1d1d20;
  --red: #b3080b;
  --red-bright: #df1a1d;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(16px);
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 12vw, 210px);
  flex: 0 0 auto;
  transition: width 180ms ease;
}

@media (min-width: 761px) {
  .site-header.is-scrolled .brand,
  .site-header.is-open .brand {
    width: 82px;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

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

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

.nav-toggle {
  display: none;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.section-block {
  padding: clamp(76px, 10vw, 132px) 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--ink);
  background: var(--bg);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 40%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(0deg, rgba(13, 13, 15, 0.9) 0%, rgba(13, 13, 15, 0) 42%);
}

.hero-content {
  padding: 150px 0 118px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

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

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 7.25rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(248, 246, 241, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 13px 20px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.light {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: 26px;
  left: clamp(18px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(248, 246, 241, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  padding: 9px 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.intro-copy {
  color: #3f3d39;
  font-size: 1.08rem;
}

.intro-copy p:last-child,
.service-copy p:last-child,
.hygiene p:last-child,
.artist p:last-child,
.contact p:last-child {
  margin-bottom: 0;
}

.proof-strip {
  background: var(--bg);
  color: var(--ink);
}

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

.proof-grid div {
  min-height: 150px;
  border-right: 1px solid var(--line);
  padding: 30px 28px;
}

.proof-grid div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work {
  background: var(--paper-muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  color: #55504a;
  font-size: 1.05rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  cursor: zoom-in;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.04);
}

.gallery-item:hover::after,
.gallery-item:hover figcaption,
.gallery-item:focus-within::after,
.gallery-item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.service {
  background: var(--bg);
  color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.service-copy p,
.hygiene-layout p,
.artist-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-weight: 900;
  text-decoration-color: var(--red-bright);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red-bright);
  font-weight: 900;
}

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

.hygiene {
  background: var(--charcoal);
  color: var(--ink);
}

.hygiene-layout,
.artist-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.image-stack {
  display: grid;
  gap: 12px;
}

.image-stack img {
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.image-stack img:last-child {
  width: min(76%, 420px);
  justify-self: end;
  background: #fff;
}

.artist {
  background: var(--paper);
}

.artist-layout {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
}

.artist-layout img {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.artist-layout p {
  color: #4b4842;
}

.faq {
  background: var(--paper-muted);
}

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

.faq-grid article {
  border-radius: 6px;
  background: var(--paper);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.faq-grid h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.faq-grid p {
  margin-bottom: 0;
  color: #4b4842;
}

.faq-grid a {
  color: var(--red);
  font-weight: 900;
  text-underline-offset: 4px;
}

.contact {
  background: var(--red);
  color: var(--ink);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: clamp(24px, 5vw, 42px);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card strong {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-card a {
  font-weight: 900;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  text-underline-offset: 4px;
}

.subpage-hero {
  display: grid;
  min-height: 58svh;
  align-items: end;
  color: var(--ink);
}

.subpage-hero-content {
  padding: 150px 0 78px;
}

.subpage-hero h1 {
  max-width: 940px;
  color: var(--ink);
}

.legal-section {
  background: var(--paper-muted);
  padding: clamp(60px, 8vw, 108px) 0;
}

.legal-content {
  max-width: 920px;
  border-radius: 6px;
  background: var(--paper);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.legal-content h2 {
  margin: 54px 0 18px;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 34px 0 12px;
  color: var(--red);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-content p,
.legal-content li {
  color: #45413c;
  font-size: 1.04rem;
}

.legal-content a {
  color: var(--red);
  font-weight: 800;
  text-underline-offset: 4px;
}

.legal-card {
  display: grid;
  gap: 7px;
  border-left: 4px solid var(--red);
  background: var(--paper-muted);
  padding: 24px;
  margin-bottom: 34px;
}

.legal-card p {
  margin: 0;
}

.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-copy p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-credit {
  color: rgba(248, 246, 241, 0.7);
  font-size: 0.84rem;
}

.footer-credit a {
  color: var(--ink);
  font-weight: 900;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-grid a {
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 4px;
}

.lightbox {
  width: min(1120px, calc(100% - 28px));
  border: 0;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  background: #050505;
  color: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #050505;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  padding: 9px 12px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 980px) {
  .section-heading,
  .split,
  .service-grid,
  .hygiene-layout,
  .artist-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .proof-grid div {
    border-bottom: 1px solid var(--line);
  }

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

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

  .footer-grid {
    grid-template-columns: 72px 1fr;
  }

  .footer-grid nav {
    grid-column: 1 / -1;
  }
}

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

  .brand {
    width: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
    color: var(--ink);
    padding: 10px 12px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-toggle-lines {
    display: grid;
    gap: 4px;
  }

  .nav-toggle-lines span {
    display: block;
    width: 14px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(13, 13, 15, 0.98);
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 12.8vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
  }

  .hero-content {
    padding: 132px 0 24px;
  }

  .hero-facts {
    position: static;
    justify-content: flex-start;
    margin: 0 auto 24px;
    width: min(var(--max), calc(100% - 36px));
  }

  .subpage-hero {
    min-height: 40svh;
    padding: 126px 0 52px;
  }

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

  .proof-grid div,
  .proof-grid div:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

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

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

  .gallery-item,
  .gallery-item.large,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.tall {
    min-height: 310px;
  }

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

  .footer-grid img {
    width: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
