﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:ital,wght@0,300;0,400;0,500;1,400&display=swap");

:root {
  --paper: #fbf9f4;
  --sand: #f1ece2;
  --line: #e5dfd3;
  --ink: #1c1b18;
  --muted: #6e6a63;
  --white: #fff;
  --caro: #7fa8a0;
  --di: #d9a441;
  --valery: #4fb3bf;
  --rose: #c95d7c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", system-ui, sans-serif;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1320px;
  height: 78px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.brand span { font-size: 20px; letter-spacing: .14em; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.main-nav a {
  text-decoration: none;
  font-size: 14.5px;
  letter-spacing: .06em;
  padding: 4px 1px 6px;
  border-bottom: 1.5px solid transparent;
}
.main-nav a:hover,
.main-nav a.active { border-bottom-color: currentColor; }
.visit-link,
.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, opacity .25s ease;
}
.btn-dark,
.visit-link:hover,
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-dark:hover { opacity: .85; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
}

.wrap { max-width: 1320px; margin: 0 auto; padding-inline: clamp(20px, 4vw, 48px); }
.section { padding-block: clamp(80px, 10vw, 140px); }
.band {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
}
h1 { margin: 0; font-size: clamp(44px, 7.5vw, 92px); line-height: 1.05; }
h2 { margin: 0 0 28px; font-size: clamp(32px, 4vw, 54px); line-height: 1.15; }
h3 { margin: 0; font-size: 30px; line-height: 1.15; }
p { font-weight: 300; line-height: 1.75; }
.lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 27px);
  font-style: italic;
  line-height: 1.55;
}
.muted { color: var(--muted); }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg,
.hero::after {
  position: absolute;
  inset: 0;
}
.hero-bg { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; background: rgba(251, 249, 244, .9); }
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 80px 24px; }
.wash-logo {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(760px, 92vw);
  height: min(400px, 52vh);
  transform: translate(-50%, -50%) rotate(-4deg);
  background: url("../images/logo.webp") center/cover;
  filter: blur(46px) saturate(1.05);
  opacity: .42;
  border-radius: 62% 38% 55% 45% / 48% 60% 40% 52%;
  pointer-events: none;
  animation: washIn 2.4s ease-out;
}
.hero-actions { margin-top: 44px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 38px 32px;
}
.artist-card {
  padding: 0;
  border-top: 2px solid var(--muted);
  transition: transform .35s ease;
}
.artist-card:hover,
.work:hover { transform: translateY(-4px); }
.artist-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-bottom: 1px solid var(--line); }
.artist-card-content { padding: 32px 30px 36px; }
.discipline {
  margin: 0 0 18px;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.text-link {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 4px;
}

.masonry { columns: 3 280px; column-gap: 36px; }
.work {
  break-inside: avoid;
  margin: 0 0 36px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .35s ease;
}
.work img { width: 100%; height: auto; border-bottom: 1px solid var(--line); background: var(--sand); }
.work figcaption { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.work-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 21px;
}
.work-meta {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.work-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; }
.badge {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--caro);
  border: 1px solid var(--caro);
  padding: 4px 10px;
}

.artist-hero {
  position: relative;
  padding: clamp(90px, 13vw, 170px) clamp(20px, 4vw, 48px) clamp(70px, 9vw, 120px);
  overflow: hidden;
  text-align: center;
}
.artist-hero h1 { font-size: clamp(62px, 13vw, 170px); line-height: .96; letter-spacing: .02em; }
.artist-hero .lead { margin: 26px auto 0; max-width: 680px; }
.artist-hero .discipline { margin-top: 28px; line-height: 2.1; }
.wash {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(820px, 94vw);
  height: min(360px, 50vh);
  transform: translate(-50%, -50%) rotate(-5deg);
  filter: blur(34px);
  border-radius: 62% 38% 55% 45% / 48% 60% 40% 52%;
  pointer-events: none;
}
.portrait { position: relative; }
.portrait img { width: 100%; max-height: 540px; object-fit: cover; aspect-ratio: 4 / 5; border: 1px solid var(--line); }
.panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 64px);
  text-align: center;
}
.legal-list { max-width: 820px; }
.legal-card { margin-bottom: 28px; }
.legal-card h2 { font-size: 26px; font-weight: 400; margin-bottom: 16px; }
.legal-card p { margin: 0; font-size: 15.5px; }

.site-footer {
  background: var(--sand);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 48px) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(32px, 5vw, 64px);
}
.footer-title {
  display: block;
  margin-bottom: 12px;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links a { text-decoration: none; font-weight: 300; border-bottom: 1px solid transparent; }
.footer-links a:hover { border-bottom-color: var(--di); }
.footer-bottom {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

[data-reveal] { opacity: 1; transform: translateY(0); }
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s ease, transform 1s ease;
}
.js [data-reveal].revealed { opacity: 1; transform: translateY(0); }

@keyframes washIn { from { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
@media (max-width: 1120px) {
  .menu-toggle { display: block; }
  .main-nav,
  .visit-link { display: none; }
  .site-header.open .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px clamp(20px, 4vw, 48px) 28px;
  }
  .site-header.open .main-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--sand);
    font-size: 17px;
  }
}
@media (max-width: 720px) {
  .header-inner { height: 68px; }
  .brand span { font-size: 17px; }
  .brand img { width: 38px; height: 38px; }
  .hero { min-height: calc(100vh - 68px); }
  .artist-card[style] { margin-top: 0 !important; }
  .grid-2 { grid-template-columns: 1fr; }
  .panel { text-align: left; }
}

