@font-face {
  font-family: 'Inter146';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter146';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('../fonts/inter-latin.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --gold: #b8873c;
  --gold-strong: #a2742f;
  --gold-soft: #d8b884;
  --ink: #16161a;
  --ink-soft: #2c2c31;
  --muted: #6e6e75;
  --muted-light: #8d8d94;
  --line: #e6e2db;
  --line-soft: #efece6;
  --paper: #ffffff;
  --paper-soft: #f4f2ee;
  --paper-cream: #f8f4ec;
  --shell: 1288px;
  --gutter: clamp(20px, 5.28vw, 76px);
  --radius: 3px;
  --shadow-card: 0 1px 2px rgba(22, 22, 26, 0.04);
  --shadow-float: 0 18px 44px rgba(22, 22, 26, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter146', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

svg.icon {
  width: 20px;
  height: 20px;
  flex: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

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

.container {
  width: min(100% - 2 * var(--gutter), var(--shell));
  margin-inline: auto;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

.link-arrow:hover {
  color: var(--gold);
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-strong);
  gap: 16px;
}

.btn-outline {
  border-color: var(--gold-soft);
  color: var(--ink);
  padding: 12px 20px;
  font-size: 11px;
}

.btn-outline svg {
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.btn-outline:hover svg {
  color: #fff;
}

.btn-ghost {
  background: none;
  color: var(--ink);
  padding: 15px 4px;
}

.btn-ghost svg {
  color: var(--ink);
}

.btn-ghost:hover {
  color: var(--gold);
  gap: 16px;
}

.btn-ghost:hover svg {
  color: var(--gold);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(22, 22, 26, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 110px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: auto;
}

.logo-mark {
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.94;
  color: var(--ink);
}

.logo-text {
  margin-top: 3px;
  padding-top: 3px;
  align-self: stretch;
  border-top: 1px solid var(--ink);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.logo-image {
  max-height: 54px;
  width: auto;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.primary-nav a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.primary-nav a:hover {
  color: var(--gold);
}

.primary-nav a.is-active {
  color: var(--ink);
  font-weight: 600;
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 40%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.92) contrast(1.02);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, #fff 6%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0) 40%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 477px;
  padding: 64px 0 60px;
}

.hero-copy {
  max-width: 660px;
}

.hero-copy h1 {
  font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.028em;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p {
  max-width: 430px;
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 29px 8px 29px 34px;
}

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

.stat svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.stat-value {
  display: block;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stat-label {
  display: block;
  margin-top: 3px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.section {
  padding: 34px 0 28px;
}

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

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 9px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4 * 18px) / 5);
  gap: 18px;
}

.carousel-track-wide {
  grid-auto-columns: calc((100% - 3 * 18px) / 4);
}

.carousel-track > * {
  scroll-snap-align: start;
}

.carousel-nav {
  position: absolute;
  top: 40%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(22, 22, 26, 0.08);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.carousel-nav svg {
  width: 16px;
  height: 16px;
}

.carousel-nav:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.carousel-nav[disabled] {
  opacity: 0.35;
  cursor: default;
}

.carousel-prev {
  left: calc(var(--gutter) * -1 + 22px);
}

.carousel-next {
  right: calc(var(--gutter) * -1 + 22px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  transition: background-color 0.2s ease, width 0.2s ease;
}

.carousel-dot.is-active {
  width: 34px;
  background: var(--gold);
}

.artist-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.artist-card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-float);
  transform: translateY(-3px);
}

.artist-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.artist-card-media {
  position: relative;
  aspect-ratio: 6 / 7;
  overflow: hidden;
  background: #17161a;
}

.artist-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.35) contrast(1.06);
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-card-media img {
  transform: scale(1.04);
}

.artist-card-body {
  padding: 14px 18px 16px;
}

.artist-card-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.artist-card-body p {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-float);
  transform: translateY(-3px);
}

.service-card svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
  stroke-width: 1.25;
}

.service-card h3 {
  margin-top: 20px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.service-card p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.66;
  color: var(--muted-light);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reference-card {
  position: relative;
  display: block;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #17161a;
}

.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reference-card:hover img {
  transform: scale(1.05);
}

.reference-card-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 18px 16px;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.88), rgba(10, 10, 12, 0));
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reference-card:hover .reference-card-caption,
.reference-card:focus-visible .reference-card-caption {
  opacity: 1;
}

.reference-card-caption strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.reference-card-caption span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.newsletter {
  padding: 6px 0 26px;
}

.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 24px;
  background: var(--paper-cream);
  border: 1px solid #efe6d5;
  border-radius: var(--radius);
}

.newsletter-intro {
  display: flex;
  align-items: center;
  gap: 18px;
}

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold);
  border: 1px solid #efe6d5;
}

.newsletter-icon svg {
  width: 20px;
  height: 20px;
}

.newsletter-intro strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
}

.newsletter-intro p {
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex: none;
  width: 340px;
  max-width: 100%;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-size: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.newsletter-form input::placeholder {
  color: var(--muted-light);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex: none;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.newsletter-submit:hover {
  background: var(--gold-strong);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.05fr 1fr 1.05fr;
  gap: 32px;
  padding-bottom: 22px;
}

.footer-brand .logo {
  margin-right: 0;
}

.footer-brand p {
  margin-top: 12px;
  max-width: 250px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-col h3 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-col ul {
  margin-top: 10px;
  display: grid;
  gap: 7px;
}

.footer-col a,
.footer-col span {
  font-size: 12.5px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0 15px;
  border-top: 1px solid var(--line-soft);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 11.5px;
  color: var(--muted-light);
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom a svg {
  width: 14px;
  height: 14px;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--muted-light);
}

.footer-credit svg {
  width: 14px;
  height: 14px;
}

.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}

.page-hero h1 {
  margin-top: 8px;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.page-hero p {
  max-width: 620px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11.5px;
  color: var(--muted-light);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span[aria-hidden='true'] {
  color: var(--line);
}

.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-chip {
  padding: 9px 16px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 40px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.filter-chip:hover {
  border-color: var(--gold-soft);
  color: var(--ink);
}

.filter-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.grid-artists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.reference-tile {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.reference-tile:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-float);
  transform: translateY(-3px);
}

.reference-tile-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #17161a;
}

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

.reference-tile-body {
  padding: 18px 20px 22px;
}

.reference-tile-body h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.reference-tile-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.reference-tile-body p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.detail-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #17161a;
}

.detail-media img {
  width: 100%;
  height: auto;
}

.prose {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.prose h2 {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

.prose h3 {
  margin-top: 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.prose p {
  margin-top: 14px;
}

.prose > p:first-child {
  margin-top: 0;
}

.prose ul {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.prose ul li {
  position: relative;
  padding-left: 20px;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 1px;
  background: var(--gold);
}

.prose a:not(.btn):not(.link-arrow) {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose .btn,
.prose .link-arrow {
  text-decoration: none;
}

.side-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.side-card h2 {
  font-size: 16px;
  font-weight: 700;
}

.side-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.side-card .btn {
  width: 100%;
  margin-top: 18px;
}

.meta-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.meta-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.meta-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.meta-list dt,
.meta-list span:first-child {
  color: var(--muted-light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-list span:last-child {
  font-weight: 600;
  text-align: right;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  padding: 13px 14px;
  font-size: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
}

.field-consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.field-consent label {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
  color: var(--muted);
}

.field-consent a {
  color: var(--gold);
  text-decoration: underline;
}

.alert {
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 13.5px;
  border-radius: var(--radius);
  border: 1px solid;
}

.alert-success {
  background: #f1f7f1;
  border-color: #cde2cd;
  color: #2f5d33;
}

.alert-error {
  background: #fdf2f2;
  border-color: #f0d2d2;
  color: #8b2f2f;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-card svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.contact-card h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.contact-card p,
.contact-card a {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-card a:hover {
  color: var(--gold);
}

.map-frame {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item-body {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: #17161a;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.value-card svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  stroke-width: 1.3;
}

.value-card h3 {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
}

.value-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.cta-band {
  margin: 20px 0 48px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
}

.cta-band h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.cta-band p {
  margin-top: 10px;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
}

.error-page {
  padding: 110px 0 120px;
  text-align: center;
}

.error-page strong {
  display: block;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
}

.error-page h1 {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 700;
}

.error-page p {
  margin: 14px auto 28px;
  max-width: 440px;
  color: var(--muted);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.pagination-step svg {
  width: 15px;
  height: 15px;
}

.pagination-gap {
  border: 0;
  min-width: 16px;
  padding: 0;
  color: var(--muted-light);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination .is-current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

@media (max-width: 1180px) {
  :root {
    --gutter: 28px;
  }

  .primary-nav ul {
    gap: 24px;
  }

  .header-inner {
    gap: 24px;
  }

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

  .carousel-track {
    grid-auto-columns: calc((100% - 3 * 18px) / 4);
  }

  .carousel-track-wide {
    grid-auto-columns: calc((100% - 2 * 18px) / 3);
  }

  .grid-artists {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    row-gap: 34px;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-inner {
    min-height: 72px;
    gap: 16px;
  }

  .header-inner .btn-outline {
    order: 2;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    padding: 8px 28px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(22, 22, 26, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav a {
    display: block;
    padding: 15px 2px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 13px;
  }

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

  .primary-nav a.is-active {
    color: var(--gold);
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-media {
    position: static;
    order: 2;
    inset: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-media::after {
    display: none;
  }

  .hero-inner {
    order: 1;
    min-height: 0;
    padding: 44px 0 36px;
    align-items: flex-start;
  }

  .hero-copy p {
    max-width: 100%;
  }

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

  .stat {
    padding: 22px 12px;
  }

  .stat:nth-child(odd) {
    border-left: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .section-head h2 {
    font-size: 25px;
  }

  .carousel-track {
    grid-auto-columns: calc((100% - 2 * 16px) / 3);
    gap: 16px;
  }

  .carousel-track-wide {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .carousel-nav {
    display: none;
  }

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

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

  .grid-artists,
  .grid-references,
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .newsletter-form {
    width: 100%;
  }

  .detail-layout,
  .contact-layout,
  .about-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 26px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 14.5px;
  }

  .logo-mark {
    font-size: 26px;
  }

  .header-inner .btn-outline {
    padding: 10px 14px;
    font-size: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-ghost {
    justify-content: flex-start;
    padding: 12px 0;
  }

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

  .stat {
    border-left: 0 !important;
    padding: 18px 4px;
  }

  .stat + .stat {
    border-top: 1px solid var(--line);
  }

  .carousel-track {
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
  }

  .carousel-track-wide {
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .reference-card {
    aspect-ratio: 16 / 9;
  }

  .carousel-dots {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .carousel-dot {
    width: 18px;
  }

  .carousel-dot.is-active {
    width: 24px;
  }

  .service-grid,
  .reference-grid,
  .grid-artists,
  .grid-references,
  .grid-services,
  .value-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .form-card {
    padding: 22px 20px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
