:root {
  --black: #0b0b0b;
  --panel: #151515;
  --bone: #f4f1ea;
  --ash: #c7c1b8;
  --muted: #8e8880;
  --brass: #c7a46a;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.bar {
  display: flex;
  max-width: 1500px;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: auto;
  padding: 0 6vw;
}

.brand,
.nav a,
.btn,
.eyebrow,
.mini {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 32px;
  color: var(--ash);
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: 120px 6vw 70px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.48)),
    var(--hero, url("/public/hero-studio.jpeg")) center / cover;
}

.hero-inner,
.section {
  max-width: 1500px;
  width: 100%;
  margin: auto;
}

.eyebrow,
.mini {
  color: var(--brass);
}

h1,
h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 1060px;
  font-size: clamp(58px, 10vw, 150px);
}

h2 {
  font-size: clamp(42px, 6vw, 92px);
}

h3 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

p {
  color: var(--ash);
  font-size: 19px;
  line-height: 1.75;
}

.lead {
  max-width: 820px;
  margin-top: 34px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
}

.actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  padding: 20px 28px;
  border: 1px solid var(--line);
}

.btn.gold {
  background: var(--brass);
  color: #080808;
  border-color: var(--brass);
}

.section {
  padding: 110px 6vw;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
}

.panel,
.faq,
.card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 32px;
}

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

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.gallery-preview img,
.artist-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) brightness(1.08);
}

.faq {
  margin-top: 16px;
}

.faq p,
.card p {
  margin-bottom: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--brass);
}

.mini-btn {
  padding: 12px 16px;
}

.gallery-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 164, 106, 0.55);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) brightness(0.95);
  transition: transform 0.5s ease;
}

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

.gallery-card span {
  display: block;
  padding: 22px 22px 0;
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.9;
  text-transform: uppercase;
}

.gallery-card p {
  padding: 0 22px 24px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label,
.search-label {
  display: grid;
  gap: 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.search-label input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0e0e0e;
  color: var(--bone);
  padding: 16px;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 1px solid var(--line);
  filter: grayscale(1) invert(0.9) contrast(0.95) brightness(0.82);
}

.contact-location {
  align-items: center;
}

.contact-location .map-frame {
  height: min(52vw, 520px);
  min-height: 320px;
}

ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ash);
  font-weight: 700;
}

footer {
  padding: 50px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ash);
}

@media (max-width: 850px) {
  .nav {
    display: none;
  }

  .bar,
  .hero,
  .section,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split,
  .grid,
  .gallery-preview,
  .gallery-index {
    grid-template-columns: 1fr;
  }
}
