:root {
  color-scheme: light;
  --ink: #111111;
  --ink-soft: #3a3735;
  --paper: #f7f2ed;
  --paper-clean: #fffdf9;
  --rose: #ad2746;
  --coral: #ed6a5a;
  --sage: #76866f;
  --mint: #d9eadf;
  --gold: #b5853f;
  --blue: #1e3f5a;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.concept-live .site-header {
  display: none;
}

.mockup-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #070706;
}

.mockup-hero img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: top center;
}

.mock-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 8px;
}

.mock-hotspot:focus-visible {
  outline: 2px solid #d8b56f;
  outline-offset: 3px;
}

.mock-logo {
  left: 3.2%;
  top: 1.4%;
  width: 5.2%;
  height: 4.2%;
}

.mock-nav-portfolio {
  left: 30.2%;
  top: 2.8%;
  width: 6.2%;
  height: 3.2%;
}

.mock-nav-about {
  left: 39%;
  top: 2.8%;
  width: 4.8%;
  height: 3.2%;
}

.mock-nav-collab {
  left: 45.5%;
  top: 2.8%;
  width: 10.2%;
  height: 3.2%;
}

.mock-nav-press {
  left: 57.2%;
  top: 2.8%;
  width: 7.2%;
  height: 3.2%;
}

.mock-nav-contact {
  left: 66.1%;
  top: 2.8%;
  width: 6.3%;
  height: 3.2%;
}

.mock-link-instagram,
.mock-link-telegram,
.mock-link-fanvue,
.mock-link-email {
  left: 66%;
  width: 25.8%;
  height: 7.1%;
}

.mock-link-instagram {
  top: 19.4%;
}

.mock-link-telegram {
  top: 27.5%;
}

.mock-link-fanvue {
  top: 35.2%;
}

.mock-link-email {
  top: 42.9%;
}

.mobile-link-strip {
  display: none;
}

.legacy-hero {
  display: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only,
.skip-link {
  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 {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  color: var(--paper-clean);
  background: var(--ink);
  border-radius: 999px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--paper-clean);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  color: var(--paper-clean);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  font-size: 0.74rem;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  color: var(--paper-clean);
  background: var(--rose);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(860px, 92vh);
  overflow: hidden;
  color: var(--paper-clean);
  background: #101010;
}

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

.hero-media img {
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.82) 0%, rgba(9, 9, 9, 0.52) 45%, rgba(9, 9, 9, 0.1) 100%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.45) 0%, rgba(9, 9, 9, 0.12) 42%, rgba(9, 9, 9, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 70px) 0 72px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.hero-main {
  min-width: 0;
}

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

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 13vw, 10.7rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2.2rem, 5.4vw, 5.2rem);
  font-weight: 780;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
}

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

.link-hub {
  width: 100%;
  padding: 18px;
  background: rgba(255, 253, 249, 0.12);
  border: 1px solid rgba(255, 253, 249, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.link-hub-label {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  color: var(--paper-clean);
  background: rgba(17, 17, 17, 0.38);
  border: 1px solid rgba(255, 253, 249, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-row + .link-row {
  margin-top: 10px;
}

.link-row:hover,
.link-row:focus-visible {
  transform: translateY(-2px);
  background: rgba(17, 17, 17, 0.55);
  border-color: rgba(255, 253, 249, 0.42);
}

.link-row strong,
.link-row small {
  display: block;
}

.link-row strong {
  font-size: 1rem;
}

.link-row small {
  margin-top: 3px;
  color: rgba(255, 253, 249, 0.68);
}

.link-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--paper-clean);
  background: var(--rose);
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.link-row.is-adult b {
  color: var(--ink);
  background: var(--mint);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--paper-clean);
  background: var(--rose);
  border-color: var(--rose);
}

.button-ghost {
  color: var(--paper-clean);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-ghost.dark {
  color: var(--ink);
  background: transparent;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 44px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(10, 10, 10, 0.36);
  backdrop-filter: blur(18px);
}

.hero-facts dt {
  margin: 0 0 4px;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 64px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.scroll-cue span {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}

.signal-band {
  overflow: hidden;
  color: var(--paper-clean);
  background: var(--ink);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 16px 0;
  animation: ticker 26s linear infinite;
}

.signal-track span {
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-track span::before {
  content: " ";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1;
  margin-right: 42px;
  background: var(--coral);
  border-radius: 50%;
  vertical-align: 1px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

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

.section-heading h2,
.about-copy h2,
.press-layout h2,
.contact-copy h2 {
  color: var(--ink);
}

.section-heading p:last-child,
.about-copy p,
.press-layout p,
.contact-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.section-heading.compact h2 {
  margin-top: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.portfolio-item {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.portfolio-item-large {
  grid-row: span 2;
  min-height: 690px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.035);
}

.portfolio-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(18px, 3vw, 32px);
  color: var(--paper-clean);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.82) 66%);
}

.portfolio-item figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-item figcaption strong {
  display: block;
  max-width: 520px;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.about-copy p {
  max-width: 790px;
  margin-top: 22px;
}

.about-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  padding: 28px;
  background: var(--paper-clean);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-panel h3 {
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.about-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.about-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-panel span {
  color: var(--ink-soft);
}

.about-panel strong {
  text-align: right;
}

.collaborations-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(120deg, rgba(217, 234, 223, 0.74), rgba(247, 242, 237, 0.4)),
    var(--paper-clean);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 249, 0.86);
}

.service-index {
  display: block;
  margin-bottom: 42px;
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.press-section {
  border-bottom: 1px solid var(--line);
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.press-layout h2 {
  margin-bottom: 24px;
}

.press-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.press-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--paper-clean);
}

.press-list span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journal-section {
  padding-top: 0;
}

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

.journal-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--paper-clean);
  background: var(--ink);
}

.journal-grid article:nth-child(2) {
  background: var(--blue);
}

.journal-grid article:nth-child(3) {
  background: var(--rose);
}

.journal-grid p {
  margin: 0 0 24px;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journal-grid h3 {
  max-width: 460px;
  margin-bottom: 28px;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.04;
}

.journal-grid a {
  width: max-content;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.faq-section .section-heading {
  margin: 0;
}

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

details {
  background: var(--paper-clean);
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

details a {
  color: var(--rose);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.92fr);
  min-height: 660px;
  color: var(--paper-clean);
  background: var(--ink);
}

.contact-media {
  min-height: 520px;
  overflow: hidden;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 8vw, 110px);
}

.contact-copy h2 {
  color: var(--paper-clean);
}

.contact-copy p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 253, 249, 0.78);
}

.contact-copy .eyebrow {
  color: var(--mint);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: rgba(255, 253, 249, 0.7);
  background: #090909;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 12px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(100% - 28px, 860px);
    padding-bottom: 52px;
  }

  .hero-layout,
  .hero-facts,
  .section-heading,
  .about-section,
  .press-layout,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    max-width: 560px;
  }

  .link-hub {
    max-width: 560px;
  }

  .portfolio-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item,
  .portfolio-item-large {
    min-height: 520px;
  }

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

  .about-panel {
    position: static;
  }

  .contact-section {
    min-height: auto;
  }
}

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

  .site-header {
    padding-inline: 14px;
  }

  .mockup-hero {
    min-height: 72svh;
  }

  .mockup-hero img {
    height: 72svh;
    object-position: 43% top;
  }

  .mock-hotspot {
    display: none;
  }

  .mobile-link-strip {
    display: grid;
    gap: 10px;
    padding: 16px 14px 22px;
    background: #070706;
  }

  .mobile-link-strip a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    color: #fffdf9;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(216, 181, 111, 0.38);
    border-radius: 12px;
    font-weight: 700;
  }

  .mobile-link-strip span {
    color: #d8b56f;
    font-size: 0.85rem;
    font-weight: 600;
  }

  .brand span:last-child {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.38) 0%, rgba(9, 9, 9, 0.46) 36%, rgba(9, 9, 9, 0.88) 100%);
  }

  h1 {
    font-size: clamp(3.9rem, 21vw, 6.7rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding-block: 64px;
  }

  .portfolio-item,
  .portfolio-item-large {
    min-height: 430px;
  }

  .service-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
  }

  .press-list div {
    grid-template-columns: 1fr;
  }

  .about-panel li {
    display: grid;
    gap: 6px;
  }

  .about-panel strong {
    text-align: left;
  }

  .contact-media {
    min-height: 380px;
  }

  .site-footer {
    display: grid;
  }
}

@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;
  }
}
