/* ===================================================
   KILIAN KRÜGER — Global Styles
   Dark luxury artist portfolio
   =================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

/* ── Variables ── */
:root {
  --bg:           #000000;
  --bg-2:         #0d0d0d;
  --bg-3:         #1a1a1a;
  --bg-4:         #222222;
  --text:         #ffffff;
  --text-2:       #aaaaaa;
  --text-3:       #555555;
  --border:       rgba(255,255,255,0.08);
  --border-2:     rgba(255,255,255,0.15);
  --nav-h:        76px;
  --max-w:        1440px;
  --px:           clamp(20px, 5vw, 80px);
  --section-py:   clamp(80px, 10vw, 140px);
  --font-d:       'Cormorant Garamond', 'Georgia', serif;
  --font-b:       'Helvetica Neue', 'Arial', sans-serif;
  --ease:         0.55s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast:    0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
.t-display {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.t-display-lg {
  font-family: var(--font-d);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.t-h2 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
}
.t-h3 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.2;
}
.t-label {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
}
.t-body {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--text-2);
}
.t-body-lg {
  font-family: var(--font-d);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-2);
}

/* ── Layout helpers ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section {
  padding: var(--section-py) 0;
}
.section--dark { background: var(--bg-2); }
.section--mid  { background: var(--bg-3); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  transition: background var(--ease-fast), border-color var(--ease-fast);
}
.nav--scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__logo span { font-style: italic; font-weight: 300; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}
.nav__links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--ease-fast);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width var(--ease-fast);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 1001;
}
.nav__menu-btn span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav__menu-btn.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-d);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300;
  color: var(--text-2);
  transition: color var(--ease-fast);
}
.nav__mobile a:hover { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid currentColor;
  transition: var(--ease-fast);
  white-space: nowrap;
}
.btn--light {
  color: var(--text);
  border-color: var(--border-2);
}
.btn--light:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--dark {
  color: var(--bg);
  background: var(--text);
  border-color: var(--text);
}
.btn--dark:hover {
  background: transparent;
  color: var(--text);
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.72) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--px);
}
.hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-d);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 32px;
}
.hero__sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}
.hero__scroll {
  position: absolute;
  bottom: clamp(28px, 4vw, 52px);
  right: var(--px);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
  color: rgba(255,255,255,0.4);
}
.hero__scroll span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; }
.hero__scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.8);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ── Stats strip ── */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px var(--px);
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}
.stats-strip__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stats-strip__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.stats-strip__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .stats-strip { padding: 32px var(--px); }
  .stats-strip__num { font-size: 28px; }
}

/* ── Statement / Quote ── */
.statement {
  padding: var(--section-py) var(--px);
  max-width: 1100px;
  margin: 0 auto;
}
.statement__quote {
  font-family: var(--font-d);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.statement__attr {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── Works grid (homepage selected) ── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.work-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover img { transform: scale(1.06); }
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--ease-fast);
}
.work-card:hover .work-card__overlay {
  background: rgba(0,0,0,0.5);
}
.work-card__info {
  transform: translateY(12px);
  opacity: 0;
  transition: transform var(--ease), opacity var(--ease);
}
.work-card:hover .work-card__info {
  transform: translateY(0);
  opacity: 1;
}
.work-card__title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.work-card__price {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}
.work-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── Split / Image-text ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image {
  overflow: hidden;
  position: relative;
}
.split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px);
  gap: 24px;
}
.split__label { margin-bottom: 8px; }
.split__heading { color: var(--text); }
.split__body { max-width: 480px; }
.split__cta { margin-top: 8px; }

/* ── Material section ── */
.material {
  padding: var(--section-py) var(--px);
  background: var(--bg-2);
}
.material__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.material__label { margin-bottom: 20px; }
.material__heading { margin-bottom: 28px; }
.material__body { max-width: 560px; margin: 0 auto; }
.material__divider {
  width: 40px; height: 1px;
  background: var(--border-2);
  margin: 36px auto 0;
}

/* ── Commissions CTA ── */
.commission-cta {
  position: relative;
  height: clamp(400px, 55vw, 750px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.commission-cta__bg {
  position: absolute;
  inset: 0;
}
.commission-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.commission-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.commission-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--px);
}
.commission-cta__label { margin-bottom: 20px; }
.commission-cta__heading {
  font-family: var(--font-d);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 700px;
}
.commission-cta__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Social proof ── */
.social-proof {
  padding: var(--section-py) var(--px);
  background: var(--bg-2);
}
.social-proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.social-proof__image {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
}
.social-proof__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}
.fracture-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.social-proof__text { display: flex; flex-direction: column; gap: 20px; }
.social-proof__heading { max-width: 420px; }
.social-proof__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.social-proof__loc {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border);
  color: var(--text-3);
}

/* ── Gallery CTA ── */
.gallery-cta {
  position: relative;
  height: clamp(350px, 45vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-cta__bg {
  position: absolute;
  inset: 0;
}
.gallery-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.gallery-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--px);
}
.gallery-cta__heading {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
}

/* ── Footer ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) var(--px) 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer__brand-name {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer__brand-name span { font-style: italic; font-weight: 300; }
.footer__signature {
  display: block;
  width: 140px;
  margin-bottom: 16px;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.75;
}
.artwork-signature {
  display: block;
  width: 160px;
  margin: 28px 0 32px auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.6;
}
.footer__brand-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  transition: var(--ease-fast);
}
.footer__social a:hover {
  border-color: var(--border-2);
  color: var(--text);
}
.footer__social svg { width: 15px; height: 15px; }
.footer__col-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color var(--ease-fast);
}
.footer__col-links a:hover { color: var(--text-2); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__copy {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 11px;
  color: var(--text-3);
  transition: color var(--ease-fast);
}
.footer__legal a:hover { color: var(--text-2); }

/* ── Gallery page ── */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 120px));
  padding-bottom: clamp(40px, 5vw, 80px);
  padding-left: var(--px);
  padding-right: var(--px);
  border-bottom: 1px solid var(--border);
}
.page-header__label { margin-bottom: 16px; }
.page-header__title { color: var(--text); }
.page-header__sub {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-3);
  max-width: 480px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--ease-fast);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(0,0,0,0.52); }
.gallery-item__info {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease);
}
.gallery-item:hover .gallery-item__info { opacity: 1; transform: none; }
.gallery-item__title {
  font-family: var(--font-d);
  font-size: 22px;
  margin-bottom: 4px;
}
.gallery-item__meta {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.gallery-item__link {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-block;
  transition: var(--ease-fast);
}
.gallery-item__link:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.gallery-item__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

/* ── My Story page ── */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.story-block--reverse { }
.story-block__image {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.story-block__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px);
  gap: 20px;
  background: var(--bg-2);
}
.story-block__num {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.story-block__heading { max-width: 500px; }
.story-block__body { max-width: 460px; }

.story-quote {
  padding: var(--section-py) var(--px);
  text-align: center;
  background: var(--bg-3);
}
.story-quote__text {
  font-family: var(--font-d);
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 32px;
}

/* ── Commissions page ── */
.process {
  padding: var(--section-py) var(--px);
  background: var(--bg-2);
}
.process__inner {
  max-width: 900px;
  margin: 0 auto;
}
.process__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.process__label { margin-bottom: 16px; }
.process__steps {
  display: flex;
  flex-direction: column;
}
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process__step:first-child { border-top: 1px solid var(--border); }
.process__num {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1;
  padding-top: 4px;
}
.process__step-title {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  margin-bottom: 10px;
}
.process__step-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 500px;
}
.process__step-body strong { color: var(--text); font-weight: 400; }

/* ── Inquiry / Contact form ── */
.inquiry {
  padding: var(--section-py) var(--px);
}
.inquiry__inner {
  max-width: 700px;
  margin: 0 auto;
}
.inquiry__label { margin-bottom: 16px; }
.inquiry__heading { margin-bottom: 12px; }
.inquiry__sub {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 48px;
  line-height: 1.65;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid--full { grid-template-columns: 1fr; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--ease-fast);
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--border-2); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-field select option { background: var(--bg-3); }
.form-submit { margin-top: 32px; }

/* ── Artwork detail page ── */
.artwork-detail {
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.artwork-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.artwork-detail__image {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.artwork-detail__image img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--bg-2);
  padding: 40px;
}
.artwork-detail__info {
  padding: clamp(40px, 6vw, 80px);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.artwork-detail__breadcrumb {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 32px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.artwork-detail__breadcrumb a:hover { color: var(--text); transition: color var(--ease-fast); }
.artwork-detail__breadcrumb svg { width: 10px; opacity: 0.4; }
.artwork-detail__title {
  font-family: var(--font-d);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 12px;
}
.artwork-detail__series {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.artwork-detail__price {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.artwork-detail__price.sold {
  color: var(--text-3);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.artwork-detail__specs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.artwork-detail__spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.artwork-detail__spec-key {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  flex-shrink: 0;
}
.artwork-detail__spec-val {
  font-size: 14px;
  color: var(--text-2);
  text-align: right;
}
.artwork-detail__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.artwork-detail__inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.artwork-detail__inquiry-label {
  font-family: var(--font-d);
  font-size: 22px;
  margin-bottom: 4px;
}
.artwork-detail__inquiry-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}

/* ── Related works ── */
.related {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}
.related__header {
  padding: 0 var(--px);
  margin-bottom: 36px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

/* ── Contact page ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
}
.contact-split__info {
  padding: clamp(60px, 8vw, 120px) var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1px solid var(--border);
}
.contact-split__form-wrap {
  padding: clamp(60px, 8vw, 120px) var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-info-value {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
}
.contact-info-value a { transition: color var(--ease-fast); }
.contact-info-value a:hover { color: var(--text-2); }

/* ── Scroll reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-dim     { color: var(--text-2); }
.text-muted   { color: var(--text-3); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex   { display: flex; }
.gap-16 { gap: 16px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .works-grid  { grid-template-columns: repeat(2, 1fr); }
  .split       { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .story-block { grid-template-columns: 1fr; }
  .story-block__image { min-height: 300px; }
  .social-proof__inner { grid-template-columns: 1fr; }
  .artwork-detail__grid { grid-template-columns: 1fr; }
  .artwork-detail__image {
    position: relative; top: 0;
    height: 60vw; min-height: 300px;
  }
  .artwork-detail__info { border-left: none; border-top: 1px solid var(--border); }
  .contact-split { grid-template-columns: 1fr; }
  .contact-split__info { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 680px) {
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .works-grid        { grid-template-columns: repeat(2, 1fr); }
  .nav__links        { display: none; }
  .nav__menu-btn     { display: flex; }
  .footer__top       { grid-template-columns: 1fr; }
  .form-grid         { grid-template-columns: 1fr; }
  .footer__bottom    { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__legal     { flex-wrap: wrap; gap: 16px; }
  .process__step     { grid-template-columns: 48px 1fr; gap: 16px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .works-grid   { grid-template-columns: 1fr; }
}
