:root {
  --paper: #fbfbf9;
  --ink: #090909;
  --muted: #6f6f6b;
  --line: rgba(9, 9, 9, 0.09);
  --soft: rgba(9, 9, 9, 0.035);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 30%, rgba(0,0,0,0.035), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #f7f7f4 100%);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.site-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 44px clamp(20px, 4vw, 72px) 72px;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 38px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  max-width: 980px;
  font-family: "Didot", "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(58px, 10.5vw, 166px);
  line-height: 0.88;
  letter-spacing: -0.072em;
}

.subhead {
  max-width: 565px;
  margin: 36px auto 0;
  color: #2d2d2b;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.object-stage {
  position: relative;
  width: min(100%, 1060px);
  margin: clamp(72px, 10vw, 132px) auto 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 3vw, 42px) 0;
  isolation: isolate;
}

.object-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(75vw, 860px);
  height: min(48vw, 440px);
  transform: translate(-50%, -46%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.09), rgba(0,0,0,0.035) 38%, transparent 72%);
  filter: blur(18px);
  z-index: -3;
}

.object-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: min(58vw, 700px);
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0,0,0,0.14);
  filter: blur(30px);
  z-index: -2;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -4;
}

.ambient-one {
  width: 42vw;
  max-width: 560px;
  height: 42vw;
  max-height: 560px;
  background: radial-gradient(circle, rgba(255,255,255,0.9), transparent 68%);
  left: 8%;
  top: -22%;
}

.ambient-two {
  width: 50vw;
  max-width: 720px;
  height: 50vw;
  max-height: 720px;
  background: radial-gradient(circle, rgba(0,0,0,0.035), transparent 72%);
  right: -8%;
  bottom: -35%;
}

.hero-object {
  display: block;
  width: min(94vw, 990px);
  max-height: 68vh;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04) drop-shadow(0 42px 70px rgba(0,0,0,0.16));
  mix-blend-mode: multiply;
}

.statement {
  min-height: 42vh;
  display: grid;
  place-items: center;
  padding: 110px 0 130px;
  border-top: 1px solid var(--line);
}

.statement p {
  width: min(100%, 830px);
  margin: 0;
  text-align: center;
  font-family: "Didot", "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 300;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2vw, 28px);
  padding: 0 0 120px;
}

.gallery-item {
  grid-column: span 3;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  min-height: 430px;
}

.gallery-item.wide { grid-column: 2 / span 4; min-height: 560px; }
.gallery-item.tall { grid-row: span 2; min-height: 720px; }

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03);
  transition: transform 900ms ease, filter 900ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: grayscale(0.88) contrast(1.02);
}

.inquiry {
  min-height: 34vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
  padding: 120px 0 90px;
  border-top: 1px solid var(--line);
}

.inquiry p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.inquiry a {
  color: var(--ink);
  text-decoration: none;
  font-family: "Didot", "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 72px);
  letter-spacing: -0.055em;
  border-bottom: 1px solid rgba(9,9,9,0.18);
  padding-bottom: 8px;
}

@media (max-width: 860px) {
  .site-shell { padding-top: 28px; }
  .hero { padding-top: 46px; }
  .eyebrow { margin-bottom: 30px; }
  .subhead { margin-top: 28px; }
  .object-stage { margin-top: 68px; }
  .hero-object { width: 116vw; max-width: none; }
  .statement { padding: 82px 0 96px; }
  .gallery { grid-template-columns: 1fr; padding-bottom: 78px; }
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: 1;
    min-height: 360px;
  }
  .inquiry { padding: 84px 0 56px; }
}

/* refined editorial rhythm */
h1 {
  max-width: 1040px;
}
.statement p {
  width: min(100%, 760px);
}
.gallery-item.softwide { grid-column: 1 / span 5; min-height: 620px; }
.gallery-item.narrow-focus { grid-column: span 2; min-height: 760px; }
.gallery-item.closing-image { grid-column: 3 / span 4; min-height: 620px; }
@media (max-width: 860px) {
  .gallery-item.softwide,
  .gallery-item.narrow-focus,
  .gallery-item.closing-image {
    grid-column: 1;
    min-height: 360px;
  }
}
