/* ============================================================
   HARRY THUILLIER JNR — ESTATE ARCHIVE
   Shared stylesheet
   ============================================================ */

:root{
  --warm-white: #f6f3ee;
  --paper: #efebe4;
  --soft-grey: #d8d3c9;
  --charcoal: #2a2723;
  --black: #131211;
  --ink: #1b1a18;
  --earth: #8c7a63;
  --earth-dim: #a89a86;
  --line: rgba(19,18,17,0.12);
  --line-soft: rgba(246,243,238,0.18);

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-slow: 1.4s;
  --dur-med: .8s;
  --dur-fast: .4s;
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

body{
  position: relative;
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Fraunces is a variable font with a "wonky" default (curved, quirky
     letterforms — most visible on capital J). Force the plain,
     non-wonky glyph shapes site-wide; harmlessly ignored by fonts
     without these axes (e.g. Inter). */
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

/* Faint contact-sheet texture behind each page. Each page includes a
   <div class="page-bg" style="background-image:url(...)"> as the first
   child of <body>. Fixed behind all content; solid-background sections
   (e.g. .bg-charcoal) naturally cover it. */
.page-bg{
  content: "";
  position: fixed;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .5;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.15);
  transform-origin: center;
  will-change: transform;
}

/* Sits between the moving contact sheet and the real content, muting
   the texture to a level where headlines and body copy stay easy to
   read without hiding the effect entirely. */
.page-scrim{
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  opacity: .68;
  z-index: 0;
  pointer-events: none;
}

body > *{
  position: relative;
  z-index: 1;
}

/* Opaque content panels behind text and images, for legibility over the
   moving contact-sheet backgrounds. Applied to the standard content wraps
   sitewide; hero/dark sections that already have their own solid
   background are excluded below. */
.wrap,
.wrap-narrow{
  background: rgba(246,243,238,.7);
  padding-top: 24px;
  padding-bottom: 24px;
  box-shadow: 0 4px 30px rgba(20,16,12,.08);
}
hr.wrap{
  background: none;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}
.bg-charcoal .wrap,
.bg-charcoal .wrap-narrow,
.about-hero.wrap{
  background: none;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}
.contact-grid.wrap{
  margin-top: 84px;
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

/* Single continuous content panel used on Archive, Prints and About Harry —
   holds every heading, image and paragraph on the page in one box, matching
   the Contact page treatment, so all pages read consistently over the
   moving contact-sheet background. */
.page-panel{
  max-width: 1400px;
  margin: 84px auto 0;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 6vw, 64px) clamp(60px, 8vw, 90px);
  background: rgba(246,243,238,.7);
  box-shadow: 0 4px 30px rgba(20,16,12,.08);
}
.page-panel .wrap{
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: none;
  box-shadow: none;
}
.page-panel .wrap-narrow{
  max-width: 860px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  background: none;
  box-shadow: none;
}
.page-panel hr.wrap{
  max-width: none;
}
.page-panel .page-header{
  padding-top: 0;
  padding-bottom: clamp(30px, 4vw, 50px);
  background: none;
  box-shadow: none;
}
.page-panel .about-hero{
  padding-top: 0;
}
.page-panel .prints-grid{
  padding-left: 0;
  padding-right: 0;
}

img{ max-width: 100%; display: block; }

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

::selection{
  background: var(--charcoal);
  color: var(--warm-white);
}

/* ---------- Typography ---------- */

.eyebrow{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 400;
}

h1, h2, h3{
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .002em;
  margin: 0;
  color: var(--ink);
}

.serif-italic{ font-style: italic; }

p{
  line-height: 1.75;
  font-weight: 300;
  color: var(--charcoal);
}

.lede{
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink);
}

/* ---------- Layout helpers ---------- */

.wrap{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.wrap-narrow{
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

section{
  padding: clamp(90px, 12vw, 160px) 0;
}

.section-tight{
  padding: clamp(50px, 7vw, 90px) 0;
}

hr.rule{
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- Navigation ---------- */

.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 60px);
  background: rgba(19,18,17,.92);
  color: var(--warm-white);
  transition: background var(--dur-med) var(--ease), height var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
  mix-blend-mode: normal;
}

.site-nav.on-dark{ color: var(--warm-white); }
.site-nav.on-dark a{ color: var(--warm-white); }

.site-nav.scrolled{
  height: 68px;
  background: rgba(19,18,17,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  color: var(--warm-white);
}
.site-nav.scrolled a{ color: var(--warm-white); }

.nav-mark{
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.nav-links{
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  opacity: .92;
  transition: opacity var(--dur-fast) var(--ease);
}
.nav-links a:hover{ opacity: 1; }
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right var(--dur-med) var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after{ right: 0; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 600;
}
.nav-toggle span{
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px){
  .nav-toggle{ display: flex; }
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(19,18,17,.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px clamp(28px, 8vw, 48px);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ color: var(--warm-white); font-size: 13px; }
  .site-nav, .site-nav.scrolled{ padding: 0 20px; }
}

/* ---------- Footer ---------- */

.site-footer{
  border-top: 1px solid var(--line);
  padding: 70px 0 50px;
  background: var(--warm-white);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 400;
  margin-bottom: 18px;
}

.footer-col a, .footer-col p{
  display: block;
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer-col a:hover{ color: var(--ink); }

.footer-mark{
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-bottom{
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--earth-dim);
}

@media (max-width: 800px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

/* ---------- Buttons / links ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn:hover{ background: var(--ink); color: var(--warm-white); }

.btn-solid{
  background: var(--ink);
  color: var(--warm-white);
}
.btn-solid:hover{ background: var(--earth); border-color: var(--earth); }

.btn-ghost-light{
  border-color: var(--line-soft);
  color: var(--warm-white);
}
.btn-ghost-light:hover{ background: var(--warm-white); color: var(--ink); }

.text-link{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

/* ---------- Reveal on scroll ---------- */

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Prints grid scrolls horizontally, not vertically — the rise-in-on-scroll
   effect looks like the images are "climbing" as you scroll the strip
   sideways, so print cards just fade in in place instead. */
.print-card.reveal{
  transform: none;
}
.print-card.reveal.is-visible{
  transform: none;
}

/* ---------- Hero (Home) ---------- */

.hero{
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2.6s ease, transform 6s ease;
  filter: grayscale(1);
}
.hero-img.is-in{ opacity: 1; transform: scale(1); }

.hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,.45) 0%, rgba(10,9,8,.12) 32%, rgba(10,9,8,.28) 68%, rgba(10,9,8,.72) 100%);
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-white);
  padding: 0 24px;
}

.hero-name{
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 7vw, 92px);
  letter-spacing: .01em;
  line-height: 1.02;
  color: var(--warm-white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s var(--ease) .5s, transform 1.6s var(--ease) .5s;
}
.hero-name.is-in{ opacity: 1; transform: translateY(0); }

.hero-years{
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--soft-grey);
  opacity: 0;
  transition: opacity 1.6s var(--ease) .9s;
}
.hero-years.is-in{ opacity: 1; }

.hero-scroll{
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--warm-white);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 1.6s var(--ease) 1.6s;
}
.hero-scroll.is-in{ opacity: .85; }
.hero-scroll .line{
  width: 1px; height: 34px;
  background: var(--warm-white);
  opacity: .6;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ transform: scaleY(.6); opacity: .35;}
  50%{ transform: scaleY(1); opacity: .8;}
}

.coming-soon-tag{
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--soft-grey);
  opacity: 0;
  transition: opacity 1.6s var(--ease) 1.2s;
}
.coming-soon-tag.is-in{ opacity: .85; }
.coming-soon-tag::before{
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--soft-grey);
  margin: 0 auto 22px;
  opacity: .5;
}

.coming-soon-note{
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--soft-grey);
  opacity: 0;
  transition: opacity 1.6s var(--ease) 1.5s;
}
.coming-soon-note.is-in{ opacity: .75; }
.coming-soon-note a{
  color: var(--warm-white);
  border-bottom: 1px solid var(--line-soft);
}
.coming-soon-note a:hover{ opacity: .8; }

/* ---------- Intro statement ---------- */

.intro-statement{
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- Image grid / archive rows ---------- */

.figure{
  margin: 0;
}
.figure img{ width: 100%; height: auto; }
.figure figcaption{
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--earth);
}
.figure figcaption .cap-title{
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--charcoal);
  letter-spacing: 0;
}

.archive-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: clamp(40px, 6vw, 70px) 0;
}
@media (max-width: 800px){
  .archive-gallery{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .archive-gallery{ grid-template-columns: 1fr; }
}

.archive-row{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  align-items: end;
  padding: clamp(50px, 8vw, 90px) 0;
}
.archive-row + .archive-row{ border-top: 1px solid var(--line); }

.archive-row .figure{ grid-column: span 7; }
.archive-row.reverse .figure{ grid-column: 6 / span 7; grid-row: 1; }
.archive-row .row-note{ grid-column: span 5; }
.archive-row.reverse .row-note{ grid-column: 1 / span 5; grid-row: 1; }

.archive-row.wide .figure{ grid-column: span 12; }
.archive-row.wide .row-note{ grid-column: span 12; margin-top: 26px; }

.row-note .plate{
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 18px;
  display: block;
}

@media (max-width: 900px){
  .archive-row, .archive-row.reverse, .archive-row.wide{
    grid-template-columns: 1fr;
  }
  .archive-row .figure, .archive-row.reverse .figure,
  .archive-row .row-note, .archive-row.reverse .row-note{
    grid-column: 1; grid-row: auto;
  }
  .archive-row .row-note{ margin-top: 24px; }
}

/* ---------- Collections index ---------- */

.collections-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.collection-card{
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--black);
}
.collection-card img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.02);
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}
.collection-card:hover img{ transform: scale(1.08); }
.collection-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0) 40%, rgba(10,9,8,.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: var(--warm-white);
}
.collection-overlay .cname{
  font-family: var(--serif);
  font-size: 22px;
}
.collection-overlay .ccount{
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft-grey);
  margin-top: 8px;
}

@media (max-width: 800px){
  .collections-grid{ grid-template-columns: 1fr; }
}

/* ---------- Page header (interior pages) ---------- */

.page-header{
  padding: clamp(110px, 13vw, 160px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
}
.page-header h1{
  font-size: clamp(34px, 5vw, 58px);
  margin-top: 18px;
}
.page-header .lede{
  margin: 26px auto 0;
}

/* ---------- Prints grid ---------- */

.prints-grid{
  --thumb-h: clamp(280px, 34vw, 400px);
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px clamp(24px, 6vw, 80px) 34px;
  scroll-snap-type: x proximity;
  scroll-padding-left: clamp(24px, 6vw, 80px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--earth-dim) transparent;
}
.prints-grid::-webkit-scrollbar{ height: 6px; }
.prints-grid::-webkit-scrollbar-track{ background: transparent; }
.prints-grid::-webkit-scrollbar-thumb{ background: var(--line); }
.print-card{
  display: block;
  flex: 0 0 auto;
  scroll-snap-align: start;
  /* Width is driven by the image's own aspect ratio (--ar, set inline per
     card), not by the length of its title — this keeps the gap between
     photos uniform no matter how long a caption is. */
  /* No max-width cap here on purpose: capping width while height stays
     fixed would squeeze wide images narrower than their true proportions,
     leaving empty bars above/below — exactly the bug this replaced. */
  width: calc(var(--thumb-h) * var(--ar, .8));
}
.print-card .thumb{
  overflow: hidden;
  background: var(--charcoal);
  margin-bottom: 20px;
  height: var(--thumb-h);
  width: 100%;
  border: 3px solid rgba(19,18,17,.65);
  box-sizing: border-box;
}
.print-card .thumb img{
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  transition: transform 1.2s var(--ease);
}
.print-card:hover .thumb img{ transform: scale(1.045); }
.print-card .p-title{
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.print-card .p-meta{
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--earth);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 700px){
  .prints-grid{ gap: 16px; }
}

.prints-scroller{
  position: relative;
  --thumb-h: clamp(280px, 34vw, 400px);
}
.scroll-btn{
  position: absolute;
  top: calc(6px + var(--thumb-h) / 2);
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(19,18,17,.85);
  border: none;
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
  opacity: .9;
}
.scroll-btn:hover{ background: var(--charcoal); opacity: 1; }
.scroll-btn svg{ width: 18px; height: 18px; display: block; }
.scroll-btn-left{ left: -54px; }
.scroll-btn-right{ right: -54px; }
.scroll-btn[disabled]{ opacity: .2; cursor: default; pointer-events: none; }
@media (max-width: 1100px){
  .scroll-btn-left{ left: 6px; }
  .scroll-btn-right{ right: 6px; }
}
@media (max-width: 700px){
  .scroll-btn{ width: 36px; height: 36px; }
  .scroll-btn svg{ width: 15px; height: 15px; }
}

/* ---------- Print detail page ---------- */

.print-detail{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.print-detail .pd-image img{
  width: 100%;
  filter: grayscale(1);
}
.pd-sticky{ position: sticky; top: 130px; }

.pd-title{
  font-size: clamp(28px, 3.4vw, 40px);
  font-style: italic;
}
.pd-year{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--earth);
}
.pd-price{
  margin-top: 30px;
  font-size: 22px;
  font-family: var(--serif);
}
.pd-price span{
  display:block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
}

.spec-table{
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.spec-row{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spec-row .k{
  color: var(--earth);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  min-width: 140px;
}
.spec-row .v{ text-align: right; color: var(--charcoal); }

.pd-actions{ margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.pd-actions .btn{ justify-content: center; }

.pd-note{
  margin-top: 30px;
  font-size: 12px;
  color: var(--earth-dim);
  line-height: 1.7;
}

@media (max-width: 900px){
  .print-detail{ grid-template-columns: 1fr; }
  .pd-sticky{ position: static; }
}

/* ---------- About page ---------- */

.about-hero{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  padding-top: clamp(200px, 22vw, 280px);
  padding-bottom: clamp(20px, 3vw, 40px);
}
.about-hero img{ filter: grayscale(1); width: 100%; }

.about-text-col{
  display: flex;
  flex-direction: column;
}

.harry-collage{
  position: relative;
  height: clamp(420px, 46vw, 560px);
}
.harry-collage img{
  position: absolute;
  background: var(--warm-white);
  padding: 14px 14px 52px;
  border: 1px solid rgba(20,16,12,.06);
  box-shadow: 0 20px 44px rgba(20,16,12,.32);
  filter: grayscale(1);
  width: 48%;
  height: auto;
  object-fit: cover;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.harry-collage img:hover{
  transform: scale(1.04) rotate(0deg) !important;
  box-shadow: 0 26px 54px rgba(20,16,12,.4);
  z-index: 9 !important;
}
.hc-1{ width: 52%; top: 0; left: 2%; transform: rotate(-7deg); z-index: 3; }
.hc-2{ width: 40%; top: 4%; right: 0; transform: rotate(6deg); z-index: 2; }
.hc-3{ width: 42%; bottom: 2%; left: -2%; transform: rotate(5deg); z-index: 4; }
.hc-4{ width: 38%; bottom: -2%; right: 8%; transform: rotate(-5deg); z-index: 1; }
.hc-5{ width: 32%; top: 30%; left: 26%; transform: rotate(-3deg); z-index: 5; }
.hc-6{ width: 30%; bottom: -2%; right: 30%; transform: rotate(9deg); z-index: 2; }
.hc-7{ width: 36%; top: 36%; right: 4%; transform: rotate(-8deg); z-index: 6; }

.about-scroll-box{
  margin-top: 0;
  height: clamp(420px, 46vw, 560px);
  overflow-y: auto;
  padding: 20px 24px 4px;
  border-top: 1px solid var(--line);
  background: var(--warm-white);
  box-shadow: 0 4px 30px rgba(20,16,12,.1);
  font-size: 15px;
  line-height: 1.75;
}
.about-scroll-box p{ margin-bottom: 18px; }
.about-scroll-box p:last-child{ margin-bottom: 4px; }
.about-scroll-box::-webkit-scrollbar{ width: 6px; }
.about-scroll-box::-webkit-scrollbar-track{ background: transparent; }
.about-scroll-box::-webkit-scrollbar-thumb{ background: var(--line); }

@media (max-width: 800px){
  .harry-collage{ height: clamp(360px, 80vw, 460px); margin-bottom: 20px; }
  .about-scroll-box{ height: auto; max-height: 480px; }
}

.timeline{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  background: var(--warm-white);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 4px 30px rgba(20,16,12,.1);
  max-width: 760px;
  margin: 0 auto;
}
.timeline .t-year{
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--earth);
}
.timeline .t-event{
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal);
}
.timeline .t-row:last-child .t-event{ border-bottom: none; }

@media (max-width: 800px){
  .about-hero{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 90px 1fr; }
}

/* ---------- Exhibition page ---------- */

.exhibition-hero{
  position: relative;
  height: 78vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--black);
}
.exhibition-hero img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  object-position: 50% 30%;
}
.exhibition-hero .ex-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,.2), rgba(10,9,8,.7));
}
.exhibition-hero .ex-caption{
  position: absolute;
  bottom: 50px; left: 0; right: 0;
  text-align: center;
  color: var(--warm-white);
  padding: 0 24px;
}
.ex-caption .eyebrow{ color: var(--soft-grey); }
.ex-caption h1{
  font-size: clamp(30px, 5vw, 56px);
  color: var(--warm-white);
  margin-top: 16px;
}

.details-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.detail-item .k{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 12px;
}
.detail-item .v{
  font-family: var(--serif);
  font-size: 20px;
}

@media (max-width: 800px){
  .details-grid{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

/* ---------- Process page ---------- */

.article-body{
  max-width: 720px;
  margin: 0 auto;
}
.article-body p{
  margin-bottom: 26px;
  line-height: 1.85;
}
.article-body p:last-child{ margin-bottom: 0; }
.article-body p:first-child{
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 22px);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
}
.article-body em{ font-style: italic; }

/* ---------- Contact page ---------- */

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 110px);
  padding-top: clamp(190px, 24vw, 280px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
@media (max-width: 800px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.contact-success{
  margin-top: 56px;
  max-width: 460px;
}
.contact-success h3{
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  margin-bottom: 14px;
}
.contact-success p{ color: var(--charcoal); }

.form-field{
  margin-bottom: 30px;
}
.form-field label{
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 12px;
}
.form-field input, .form-field textarea, .form-field select{
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--charcoal);
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  padding: 10px 2px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  border-color: var(--earth);
}
.form-field textarea{ resize: vertical; min-height: 120px; }

.contact-info h3{ font-size: 22px; margin-bottom: 4px; }
.contact-info .ci-block{ margin-bottom: 42px; }
.contact-info .ci-block .eyebrow{ display:block; margin-bottom: 14px; }
.contact-info .ci-block p{ margin: 0; }
.contact-info .ci-block a{ border-bottom: 1px solid var(--line); }

/* ---------- Misc ---------- */

.divider-quote{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.divider-quote .q{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.5;
  color: var(--ink);
}
.divider-quote .attrib{
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--earth);
}

.bg-charcoal{ background: var(--charcoal); color: var(--warm-white); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3{ color: var(--warm-white); }
.bg-charcoal p{ color: var(--soft-grey); }
.bg-charcoal .eyebrow{ color: var(--earth-dim); }
.bg-charcoal .q{ color: var(--warm-white); }

.center{ text-align: center; }

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,90px);
}
@media (max-width: 800px){
  .two-col{ grid-template-columns: 1fr; }
}
