/* ============================================================
   Atelier Lumière v2 — Editorial Gallery Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* --- Tokens -------------------------------------------------- */
:root {
  --white:        #f9f8f2;
  --off-white:    #f2f1e8;
  --ink:          #111110;
  --ink-60:       #666663;
  --ink-30:       #b3b3b0;
  --ink-10:       #e8e8e6;
  --terracotta:   #b8865a;
  --tc-pale:      #f2ece4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Inter', system-ui, sans-serif;

  --nav-h:        60px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            0.28s;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(249,248,242,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-10);
  transform: translateY(-100%);
  animation: navIn 0.5s 0.1s var(--ease) forwards;
}

@keyframes navIn { to { transform: translateY(0); } }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.nav-brand em { font-style: italic; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  position: relative;
  transition: color var(--t) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width var(--t) var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--ink); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background var(--t), color var(--t);
}
.nav-cta:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   HERO — Editorial text-forward
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--ink-10);
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left: text */
.hero-text {
  padding: 72px 56px 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink-10);
}

.hero-kicker {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.5s 0.4s var(--ease) forwards;
}

.hero-kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--ink-30);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 40px;
}

.hero-headline em {
  font-style: italic;
  color: var(--ink-60);
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .line span {
  display: block;
  transform: translateY(110%);
  animation: lineReveal 0.72s var(--ease) forwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.45s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.58s; }
.hero-headline .line:nth-child(3) span { animation-delay: 0.71s; }
.hero-headline .line:nth-child(4) span { animation-delay: 0.84s; }

@keyframes lineReveal { to { transform: translateY(0); } }

.hero-body {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-60);
  max-width: 360px;
  opacity: 0;
  animation: fadeUp 0.5s 1s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.5s 1.1s var(--ease) forwards;
}

.btn-primary {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--ink);
  color: var(--white);
  transition: background var(--t), transform var(--t);
}
.btn-primary:hover { background: #333331; transform: translateY(-1px); }

.btn-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
}
.btn-text::after { content: '→'; transition: transform var(--t); }
.btn-text:hover { color: var(--ink); }
.btn-text:hover::after { transform: translateX(4px); }

/* Right: featured painting */
.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: imgReveal 1.2s 0.5s var(--ease) forwards;
}

@keyframes imgReveal {
  to { opacity: 1; transform: scale(1); }
}

.hero-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(17,17,16,0.7), transparent);
  color: rgba(255,255,255,0.75);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero footer strip */
.hero-strip {
  border-top: 1px solid var(--ink-10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 20px 24px;
  border-right: 1px solid var(--ink-10);
  opacity: 0;
  animation: fadeUp 0.4s var(--ease) forwards;
}
.hero-stat:nth-child(1) { animation-delay: 1.1s; }
.hero-stat:nth-child(2) { animation-delay: 1.2s; }
.hero-stat:nth-child(3) { animation-delay: 1.3s; }
.hero-stat:nth-child(4) { animation-delay: 1.4s; border-right: none; }

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 5px;
}

/* ============================================================
   COLLECTION SECTION
   ============================================================ */
.collection {
  padding: 96px 40px 112px;
}

.collection-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink-10);
}

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.collection-title em { font-style: italic; color: var(--ink-60); }

/* Filter — text links style */
.filter-bar-v2 {
  display: flex;
  gap: 0;
}

.filter-v2 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-30);
  padding: 0 0 2px;
  margin-left: 24px;
  border-bottom: 1px solid transparent;
  transition: color var(--t), border-color var(--t);
}

.filter-v2:first-child { margin-left: 0; }

.filter-v2:hover { color: var(--ink-60); }

.filter-v2.active {
  color: var(--ink);
  border-color: var(--ink);
}

/* Gallery Grid */
.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-v2 {
  background: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  opacity: 1;           /* visible by default */
}

.card-v2.hidden { display: none; }

/* Card enter state — JS drives opacity/transform via inline styles */

.card-v2-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--off-white);
}

.card-v2-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.3s;
}

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

/* Hover overlay — minimal */
.card-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,16,0.55);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.card-v2:hover .card-v2-overlay { opacity: 1; }

.card-v2-overlay-inner {
  color: var(--white);
}

.card-v2-overlay-desc {
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.85;
}

.card-v2-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 10px;
  opacity: 0.9;
}
.card-v2-view::after { content: '→'; }

.card-v2-info {
  padding: 18px 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-v2-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}

.card-v2-meta {
  font-size: 0.68rem;
  color: var(--ink-60);
  letter-spacing: 0.04em;
}

.card-v2-price {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 8px;
}

/* Unavailable / sold state */
.card-v2.unavailable .card-v2-image img {
  filter: grayscale(45%);
  opacity: 0.8;
}

.card-v2-sold-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  pointer-events: none;
}

.card-v2.unavailable .card-v2-price {
  color: var(--ink-30);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* Filter separator */
.filter-sep {
  width: 1px;
  height: 12px;
  background: var(--ink-10);
  margin-left: 16px;
  align-self: center;
}

/* Artwork page — not available state */
.aw-not-available {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid var(--ink-10);
  font-size: 0.82rem;
  color: var(--ink-60);
  line-height: 1.7;
}

.aw-not-available strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 6px;
}

/* Loading */
.gallery-loading-v2 {
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  color: var(--ink-30);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FEATURED BAND — single highlighted work
   ============================================================ */
.featured-band {
  margin: 64px 40px;
  border: 1px solid var(--ink-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.featured-image-wrap {
  overflow: hidden;
  background: var(--off-white);
}

.featured-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.featured-band:hover .featured-image-wrap img { transform: scale(1.03); }

.featured-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--ink-10);
}

.featured-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-30);
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured-label::before { content: ''; width: 20px; height: 1px; background: var(--ink-30); }

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 20px;
}

.featured-title em { font-style: italic; color: var(--ink-60); }

.featured-meta {
  font-size: 0.8rem;
  color: var(--ink-60);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

.featured-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-60);
  max-width: 380px;
}

.featured-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
}

.featured-price-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 4px;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  transition: gap var(--t), opacity var(--t);
  margin-top: 12px;
  align-self: flex-start;
}

.featured-link:hover { gap: 16px; opacity: 0.65; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  padding: 88px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--ink-10);
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.about-heading em { font-style: italic; color: var(--ink-60); }

.about-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink-60);
}

.about-body p + p { margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-v2 {
  border-top: 1px solid var(--ink-10);
  padding: 64px 40px 48px;
}

.footer-v2-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-10);
}

.footer-v2-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.footer-v2-tagline {
  font-size: 0.8rem;
  color: var(--ink-60);
  line-height: 1.7;
}

.footer-v2-col-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 14px;
}

.footer-v2-col-links li { margin-bottom: 10px; }
.footer-v2-col-links a {
  font-size: 0.82rem;
  color: var(--ink-60);
  transition: color var(--t);
}
.footer-v2-col-links a:hover { color: var(--ink); }

.footer-v2-col-text {
  font-size: 0.82rem;
  color: var(--ink-60);
  line-height: 1.7;
}

.footer-v2-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--ink-30);
}

.footer-server-note-v2 {
  font-style: italic;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .gallery-grid-v2 { grid-template-columns: repeat(3, 1fr); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-top: 1px solid var(--ink-10); }
  .hero-stat:nth-child(4) { border-top: 1px solid var(--ink-10); }
  .footer-v2-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 800px) {
  .hero-main { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-text { border-right: none; padding: 56px 24px 40px; }
  .gallery-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .featured-band { grid-template-columns: 1fr; margin: 32px 24px; }
  .featured-content { padding: 40px 24px; border-left: none; border-top: 1px solid var(--ink-10); }
  .about-strip { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
  .collection { padding: 64px 24px; }
  .nav { padding: 0 24px; }
  .footer-v2 { padding: 40px 24px 28px; }
  .footer-v2-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid-v2 { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .collection-head { flex-direction: column; gap: 20px; }
  .filter-bar-v2 { flex-wrap: wrap; gap: 8px; }
  .filter-v2 { margin-left: 0; }
}

/* ============================================================
   ARTWORK DETAIL PAGE v2
   ============================================================ */

.aw-breadcrumb {
  padding: calc(var(--nav-h) + 28px) 40px 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-30);
  display: flex;
  gap: 12px;
  align-items: center;
}

.aw-breadcrumb a {
  color: var(--ink-30);
  transition: color var(--t);
}
.aw-breadcrumb a:hover { color: var(--ink); }
.aw-breadcrumb-sep { color: var(--ink-10); }

/* Two-column layout */
.aw-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 0;
  padding: 40px 40px 96px;
  align-items: start;
}

/* Left: stacked images column */
.aw-image-col {
  padding-right: 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aw-image-wrap {
  overflow: hidden;
  background: var(--off-white);
  /* Each image fits in the viewport so the first is fully visible on load */
  height: calc(100svh - var(--nav-h) - 72px);
  max-height: 700px;
}

.aw-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Right: sidebar — sticky so it stays in view while scrolling images */
.aw-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  max-height: calc(100svh - var(--nav-h) - 64px);
  overflow-y: auto;
  /* Hide scrollbar visually but keep scroll functionality */
  scrollbar-width: none;
  padding-right: 4px;
}
.aw-sidebar::-webkit-scrollbar { display: none; }

.aw-category {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 16px;
}

.aw-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.aw-artist {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ink-60);
}

/* Metadata table */
.aw-meta {
  margin-top: 40px;
}

.aw-meta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--ink-10);
}

.aw-meta-row:last-child {
  border-bottom: 1px solid var(--ink-10);
}

.aw-meta-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-30);
  padding-top: 1px;
}

.aw-meta-value {
  font-size: 0.88rem;
  color: var(--ink);
}

.aw-available {
  display: flex;
  align-items: center;
  gap: 7px;
}

.aw-available::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5a9e5a;
  flex-shrink: 0;
}

/* Price block */
.aw-price-block {
  margin-top: 40px;
}

.aw-price-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-30);
  display: block;
  margin-bottom: 8px;
}

.aw-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

/* Long description */
.aw-description {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-10);
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--ink-60);
}

/* Inline inquiry form */
.aw-form-wrap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-10);
}

.aw-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

/* Related works */
.aw-related {
  padding: 80px 40px 96px;
  border-top: 1px solid var(--ink-10);
}

.aw-related-head {
  margin-bottom: 48px;
}

.aw-related-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-30);
  display: block;
  margin-bottom: 12px;
}

.aw-related-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.aw-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.aw-related-card {
  cursor: pointer;
  display: block;
  color: inherit;
}

.aw-related-card-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  margin-bottom: 16px;
}

.aw-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.aw-related-card:hover .aw-related-card-image img {
  transform: scale(1.04);
}

.aw-related-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.aw-related-card-meta {
  font-size: 0.72rem;
  color: var(--ink-30);
  letter-spacing: 0.04em;
}

/* Artwork responsive */
@media (max-width: 1000px) {
  .aw-layout {
    grid-template-columns: 1fr;
    padding: 32px 40px 72px;
  }
  .aw-image-col {
    padding-right: 0;
    margin-bottom: 48px;
  }
  .aw-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .aw-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .aw-breadcrumb { padding: calc(var(--nav-h) + 20px) 24px 0; }
  .aw-layout { padding: 24px 24px 56px; }
  .aw-related { padding: 56px 24px 64px; }
  .aw-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================================================
   CONTACT PAGE v2
   ============================================================ */

/* Header */
.contact-v2-header {
  padding: calc(var(--nav-h) + 72px) 40px 72px;
  border-bottom: 1px solid var(--ink-10);
  max-width: 760px;
}

.contact-v2-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-30);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.5s 0.3s var(--ease) forwards;
}

.contact-v2-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-30);
}

.contact-v2-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.6s 0.45s var(--ease) forwards;
}

.contact-v2-title em {
  font-style: italic;
  color: var(--ink-60);
}

.contact-v2-lead {
  margin-top: 28px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-60);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.6s 0.6s var(--ease) forwards;
}

/* Body — two-column layout */
.contact-v2-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 60vh;
}

/* Left — info column */
.contact-v2-info {
  padding: 64px 40px;
  border-right: 1px solid var(--ink-10);
}

.contact-v2-info-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 40px;
}

.contact-info-row {
  padding: 22px 0;
  border-top: 1px solid var(--ink-10);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
}

.contact-info-row:last-child {
  border-bottom: 1px solid var(--ink-10);
}

.contact-info-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-30);
  padding-top: 2px;
}

.contact-info-value {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.7;
}

.contact-info-value a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink-10);
  transition: border-color var(--t);
}

.contact-info-value a:hover {
  border-color: var(--ink);
}

/* Right — form column */
.contact-v2-form-col {
  padding: 64px 56px 64px 64px;
}

.contact-v2-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

.contact-v2-form-title em {
  font-style: italic;
  color: var(--ink-60);
}

/* Form fields — bottom border only, no box */
.field-group {
  margin-bottom: 36px;
}

.field-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 10px;
  transition: color var(--t);
}

.field-group:focus-within .field-label {
  color: var(--ink);
}

.field-input,
.field-textarea,
.field-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-10);
  padding: 10px 0 12px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color var(--t);
  appearance: none;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--ink-30);
}

.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  border-bottom-color: var(--ink);
}

.field-select {
  cursor: pointer;
  color: var(--ink-30);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b3b3b0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.field-select.has-value {
  color: var(--ink);
}

.field-textarea {
  resize: none;
  min-height: 100px;
  line-height: 1.7;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-v2-submit {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.btn-submit-v2 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--font-ui);
  transition: background var(--t), color var(--t);
}

.btn-submit-v2:hover {
  background: transparent;
  color: var(--ink);
}

.form-v2-note {
  font-size: 0.75rem;
  color: var(--ink-30);
  line-height: 1.6;
}

.form-v2-success {
  display: none;
  font-size: 0.85rem;
  color: var(--ink-60);
  padding: 16px 0;
  border-top: 1px solid var(--ink-10);
  margin-top: 24px;
}

/* ============================================================
   COLLECTION PAGE HEADER
   ============================================================ */
.collection-page-header {
  padding: calc(var(--nav-h) + 72px) 40px 72px;
  border-bottom: 1px solid var(--ink-10);
  max-width: 820px;
}

.collection-page-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-30);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.5s 0.3s var(--ease) forwards;
}

.collection-page-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-30);
}

.collection-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.6s 0.45s var(--ease) forwards;
}

.collection-page-title em {
  font-style: italic;
  color: var(--ink-60);
}

/* ============================================================
   HOMEPAGE SNIPPET CTA
   ============================================================ */
.snippet-cta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-10);
  text-align: center;
}

.snippet-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink-10);
  transition: color var(--t), gap var(--t), border-color var(--t);
}

.snippet-cta-link:hover {
  color: var(--ink);
  gap: 16px;
  border-color: var(--ink);
}

.snippet-cta-arrow {
  display: inline-block;
  transition: transform var(--t);
}

.snippet-cta-link:hover .snippet-cta-arrow {
  transform: translateX(4px);
}

/* Responsive contact */
@media (max-width: 900px) {
  .contact-v2-body {
    grid-template-columns: 1fr;
  }
  .contact-v2-info {
    border-right: none;
    border-bottom: 1px solid var(--ink-10);
    padding: 48px 40px;
  }
  .contact-v2-form-col {
    padding: 48px 40px;
  }
}

@media (max-width: 600px) {
  .contact-v2-header { padding: calc(var(--nav-h) + 48px) 24px 48px; }
  .contact-v2-info { padding: 40px 24px; }
  .contact-v2-form-col { padding: 40px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info-row { grid-template-columns: 1fr; gap: 6px; }
  .contact-v2-submit { flex-direction: column; align-items: flex-start; gap: 16px; }
}
