@font-face {
  font-family: 'Libre Caslon Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/LibreCaslonDisplay-400.woff2') format('woff2');
  
}
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/LibreCaslonText-400i.woff2') format('woff2');
  
}
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/LibreCaslonText-400.woff2') format('woff2');
  
}
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/LibreCaslonText-700.woff2') format('woff2');
  
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/SourceSans3-400i.woff2') format('woff2');
  
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/SourceSans3-400.woff2') format('woff2');
  
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/SourceSans3-500.woff2') format('woff2');
  
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/SourceSans3-600.woff2') format('woff2');
  
}
/* ============================================================
   TOM HALSETH PHOTOGRAPHY - design system
   Palette drawn from the client's existing site:
   paper white / ink #1A1E22 / slate #283038 / slate-blue #445577
   Type: Libre Caslon Display + Libre Caslon Text + Source Sans 3
   ============================================================ */

:root {
  --paper: #FBFBF9;
  --paper-deep: #F3F3EF;
  --ink: #1A1E22;
  --body: #2B3138;
  --stone: #59616B;
  --slate: #283038;
  --slate-blue: #445577;
  --hairline: #E2E2DD;
  --hairline-dark: #3A434D;
  --white: #FFFFFF;

  --serif-display: "Libre Caslon Display", "Georgia", serif;
  --serif-text: "Libre Caslon Text", "Georgia", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 700ms;

  --w-wide: 1360px;
  --w-text: 720px;
  --pad: clamp(20px, 4.5vw, 56px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--serif-display); font-weight: 400; color: var(--ink); line-height: 1.14; }
h1 { font-size: clamp(38px, 5.6vw, 72px); letter-spacing: 0.005em; }
h2 { font-size: clamp(30px, 3.6vw, 46px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-family: var(--serif-text); }

.kicker {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-blue);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--slate-blue); opacity: .6; }
.kicker--bare::before { display: none; }

.lede {
  font-family: var(--serif-text);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.75;
  color: var(--body);
}

.prose { max-width: var(--w-text); }
.prose p { margin-bottom: 1.45em; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--slate-blue); border-bottom: 1px solid rgba(68, 85, 119, .35); transition: border-color .3s; }
.prose a:hover { border-color: var(--slate-blue); }

.small-caps-note {
  font-size: 14.5px;
  letter-spacing: .04em;
  color: var(--stone);
}

/* ---------- layout ---------- */
.wrap { max-width: var(--w-wide); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: clamp(64px, 9vw, 130px); padding-bottom: clamp(64px, 9vw, 130px); }
.section--tight { padding-top: clamp(44px, 6vw, 84px); padding-bottom: clamp(44px, 6vw, 84px); }
.section--flush-top { padding-top: 0; }

.rule { border: 0; border-top: 1px solid var(--hairline); }

.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: clamp(30px, 4vw, 54px); }
.section-head h2 { max-width: 18em; }
.section-head .index-num {
  font-family: var(--serif-display);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--stone);
  letter-spacing: .12em;
  white-space: nowrap;
}

/* ---------- header ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 251, 249, .94);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s;
}
.topbar.is-scrolled { border-bottom-color: var(--hairline); }
@supports (backdrop-filter: blur(8px)) {
  .topbar { background: rgba(251, 251, 249, .82); backdrop-filter: blur(14px) saturate(1.1); }
}
.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  gap: 20px;
}
.brand { text-align: center; display: inline-block; }
.brand__name {
  font-family: var(--serif-display);
  font-size: 25px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.brand__tag {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 3px;
}
.nav { display: flex; gap: clamp(18px, 2.6vw, 40px); }
.nav--left { justify-content: flex-start; }
.nav--right { justify-content: flex-end; }
.nav a {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink);
  transition: right .45s var(--ease-lux);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--ink); }

.menu-btn { display: none; }

/* mobile menu */
@media (max-width: 900px) {
  .topbar__inner { grid-template-columns: auto 1fr auto; height: 72px; }
  .nav { display: none; }
  .brand { justify-self: start; text-align: left; }
  .brand__name { font-size: 20px; }
  .menu-btn {
    display: inline-flex; flex-direction: column; gap: 6px;
    justify-self: end; padding: 10px 2px;
    min-width: 44px; min-height: 44px; justify-content: center; align-items: flex-end;
  }
  .menu-btn span { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease-lux), opacity .3s, width .4s var(--ease-lux); }
  .menu-btn.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-btn.is-open span:nth-child(2) { opacity: 0; }
  .menu-btn.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 26px; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--slate);
  color: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-lux), visibility .5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a {
  font-family: var(--serif-display);
  font-size: clamp(30px, 8vw, 44px);
  color: var(--paper);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-dark);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease-lux), transform .5s var(--ease-lux);
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu a small { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; color: #8A94A0; text-transform: uppercase; }
.mobile-menu__foot { margin-top: 40px; font-size: 14px; color: #8A94A0; letter-spacing: .06em; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: min(92vh, 980px);
  min-height: 560px;
  background: var(--slate);
  overflow: hidden;
  color: var(--white);
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero__slide.is-active img { animation: heroDrift 9s var(--ease-lux) forwards; }
@keyframes heroDrift {
  from { transform: scale(1.09) translateY(1.2%); }
  to   { transform: scale(1.015) translateY(0); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20, 25, 31, .62) 0%, rgba(20, 25, 31, .18) 38%, rgba(20, 25, 31, .10) 60%, rgba(20, 25, 31, .30) 100%);
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(56px, 9vh, 110px);
}
.hero .kicker { color: #C9D2DF; }
.hero .kicker::before { background: #C9D2DF; }
.hero h1 { color: var(--white); margin: 18px 0 14px; max-width: 12em; text-wrap: balance; }
.hero__sub {
  font-family: var(--serif-text);
  font-size: clamp(17px, 1.7vw, 21px);
  color: #E4E8EC;
  max-width: 34em;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.hero__meta {
  position: absolute; right: var(--pad); bottom: 28px;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: #B7C0CB;
  text-align: right;
}
.hero__dots { position: absolute; left: var(--pad); bottom: 28px; display: flex; gap: 10px; }
.hero__dots button {
  width: 34px; height: 22px; position: relative; padding: 10px 0;
}
.hero__dots button::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px;
  background: rgba(255,255,255,.38);
  transition: background .3s;
}
.hero__dots button.is-active::before { background: var(--white); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 30px;
  min-height: 50px;
  border: 1px solid currentColor;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: color .45s var(--ease-lux);
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-lux);
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--paper); }
.btn--light { color: var(--white); }
.btn--light::before { background: var(--white); }
.btn--light:hover { color: var(--ink); }
.btn--solid { background: var(--slate); border-color: var(--slate); color: var(--white); }
.btn--solid::before { background: var(--paper); }
.btn--solid:hover { color: var(--ink); }
.btn .arrow { font-family: var(--serif-text); font-size: 17px; transition: transform .45s var(--ease-lux); }
.btn:hover .arrow { transform: translateX(5px); }

.text-link {
  font-size: 14px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .35s var(--ease-lux), color .3s, border-color .3s;
}
.text-link:hover { gap: 16px; color: var(--slate-blue); border-color: var(--slate-blue); }

/* ---------- intro band ---------- */
.intro-band { background: var(--paper); }
.intro-band__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.intro-band figure { position: relative; max-width: max-content; }
.intro-band figure::after {
  content: ""; position: absolute; top: 22px; left: 22px; right: -22px; bottom: -22px;
  border: 1px solid var(--hairline);
  z-index: -1;
}
@media (max-width: 900px) {
  .intro-band__grid { grid-template-columns: 1fr; }
}

/* ---------- collection index cards ---------- */
.coll-list { display: grid; gap: 0; border-top: 1px solid var(--hairline); }
.coll-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 340px auto;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background .4s;
}
.coll-row:hover { background: var(--paper-deep); }
.coll-row__num {
  font-family: var(--serif-display);
  font-size: 19px; letter-spacing: .1em; color: var(--stone);
}
.coll-row h3 { font-family: var(--serif-display); font-size: clamp(22px, 2.6vw, 34px); transition: color .3s; }
.coll-row:hover h3 { color: var(--slate-blue); }
.coll-row__count { font-size: 13.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }
.coll-row__thumbs { display: flex; gap: 10px; justify-content: flex-end; }
.coll-row__thumbs img {
  width: 104px; height: 76px; object-fit: cover;
  filter: saturate(.96);
  transition: transform .5s var(--ease-lux);
}
.coll-row:hover .coll-row__thumbs img { transform: translateY(-4px); }
.coll-row:hover .coll-row__thumbs img:nth-child(2) { transition-delay: .06s; }
.coll-row:hover .coll-row__thumbs img:nth-child(3) { transition-delay: .12s; }
.coll-row__link { position: absolute; inset: 0; }
@media (max-width: 900px) {
  .coll-row { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .coll-row__thumbs { display: none; }
}

/* collection cards (home, 3-up editorial) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }
.coll-card { position: relative; }
.coll-card figure { overflow: hidden; background: var(--paper-deep); aspect-ratio: 4 / 3; }
.coll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-lux); }
.coll-card:hover img { transform: scale(1.045); }
.coll-card__body { padding-top: 20px; }
.coll-card__num { font-family: var(--serif-display); font-size: 14px; letter-spacing: .16em; color: var(--stone); display: block; margin-bottom: 8px; }
.coll-card h3 { font-family: var(--serif-display); font-size: clamp(21px, 2vw, 26px); margin-bottom: 6px; transition: color .3s; }
.coll-card:hover h3 { color: var(--slate-blue); }
.coll-card__count { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); }
.coll-card__link { position: absolute; inset: 0; }

/* ---------- justified gallery ---------- */
.jgrid { --gap: 14px; }
.jgrid__row { display: flex; gap: var(--gap); margin-bottom: var(--gap); }
.jgrid .ph { position: relative; overflow: hidden; background: var(--ph-dom, var(--paper-deep)); }
.jgrid .ph img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .8s ease, transform 1.1s var(--ease-lux);
}
.jgrid .ph img.is-loaded { opacity: 1; }
.jgrid .ph:hover img { transform: scale(1.035); }
.jgrid .ph__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 25, 31, .55), rgba(20, 25, 31, 0) 46%);
  opacity: 0; transition: opacity .5s ease;
  display: flex; align-items: flex-end;
  padding: 18px 20px;
  pointer-events: none;
}
.ph:hover .ph__veil { opacity: 1; }
.ph__veil .t {
  font-family: var(--serif-text);
  font-size: 16.5px; color: var(--white); line-height: 1.4;
  transform: translateY(8px); transition: transform .5s var(--ease-lux);
}
.ph:hover .ph__veil .t { transform: none; }
@media (hover: none) { .ph__veil { display: none; } }

/* fallback simple grid before JS lays out rows */
.jgrid:not(.is-laid-out) { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.jgrid:not(.is-laid-out) .ph { aspect-ratio: 4 / 3; }

/* ---------- artwork (plate) page ---------- */
.plate-hero { background: var(--paper); padding-top: clamp(30px, 4vw, 60px); }
.plate-stage { text-align: center; }
.plate-stage .frame {
  display: inline-block; position: relative;
  background: var(--white);
  padding: clamp(10px, 1.6vw, 18px);
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 70px -30px rgba(26, 30, 34, .28);
}
.plate-stage img { max-height: 76vh; width: auto; max-width: 100%; margin: 0 auto; cursor: zoom-in; }
.plate-stage figcaption { margin-top: 16px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }

.plate-info { max-width: 880px; margin: 0 auto; text-align: center; }
.plate-info .plate-num { font-family: var(--serif-display); font-size: 14px; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); }
.plate-info h1 { font-size: clamp(30px, 4vw, 52px); margin: 14px 0 20px; text-wrap: balance; }
.plate-info .desc { font-family: var(--serif-text); font-size: clamp(17.5px, 1.5vw, 20px); line-height: 1.8; color: var(--body); text-align: left; }
.plate-info .desc p { margin-bottom: 1.2em; }

.spec-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  margin: clamp(30px, 4vw, 50px) 0;
}
.spec-list > div { padding: 20px 12px; text-align: center; }
.spec-list > div + div { border-left: 1px solid var(--hairline); }
.spec-list dt { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: 6px; }
.spec-list dd { font-family: var(--serif-text); font-size: 16.5px; color: var(--ink); }
.spec-list dd a { color: var(--slate-blue); }
@media (max-width: 700px) {
  .spec-list { grid-template-columns: 1fr 1fr; }
  .spec-list > div:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .spec-list > div:nth-child(3) { border-left: 0; }
}

.plate-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.plate-note { margin-top: 22px; font-size: 14.5px; color: var(--stone); }

.pn-nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--hairline); }
.pn-nav a {
  display: flex; align-items: center; gap: 20px;
  padding: 26px var(--pad);
  transition: background .35s;
}
.pn-nav a:hover { background: var(--paper-deep); }
.pn-nav a + a { border-left: 1px solid var(--hairline); justify-content: flex-end; text-align: right; }
.pn-nav img { width: 92px; height: 66px; object-fit: cover; }
.pn-nav .lbl { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 6px; }
.pn-nav .ttl { font-family: var(--serif-text); font-size: 16px; color: var(--ink); line-height: 1.35; }
@media (max-width: 700px) {
  .pn-nav img { display: none; }
  .pn-nav a { padding: 20px 18px; }
}

/* ---------- breadcrumbs ---------- */
.crumbs { padding: 18px 0 0; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--hairline-dark); opacity: .5; }
.crumbs a { color: var(--stone); transition: color .3s; }
.crumbs a:hover { color: var(--slate-blue); }
.crumbs [aria-current] { color: var(--ink); }

/* ---------- page hero (interior) ---------- */
.page-head { padding-top: clamp(48px, 7vw, 100px); padding-bottom: clamp(34px, 5vw, 70px); }
.page-head h1 { margin: 16px 0 18px; max-width: 15em; text-wrap: balance; }
.page-head .lede { max-width: 44em; }
.page-head--center { text-align: center; }
.page-head--center h1, .page-head--center .lede { margin-left: auto; margin-right: auto; }

/* dark editorial band */
.band-dark { background: var(--slate); color: #D9DEE5; }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark .kicker { color: #9FB0C8; }
.band-dark .kicker::before { background: #9FB0C8; }
.band-dark .rule { border-color: var(--hairline-dark); }
.band-dark .lede { color: #C7CDD6; }

/* stats / trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; border-top: 1px solid var(--hairline-dark); }
.trust-strip > div { padding: 34px 26px; border-bottom: 1px solid var(--hairline-dark); }
.trust-strip > div + div { border-left: 1px solid var(--hairline-dark); }
.trust-strip .big { font-family: var(--serif-display); font-size: clamp(34px, 3.6vw, 52px); color: var(--white); line-height: 1; }
.trust-strip .lbl { margin-top: 10px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: #93A0AE; }
@media (max-width: 700px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip > div:nth-child(odd) { border-left: 0; }
}

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid .portrait { position: sticky; top: 120px; }
.about-grid .portrait figure { position: relative; max-width: max-content; }
.about-grid .portrait figure::after {
  content: ""; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--hairline); z-index: -1;
}
.about-grid .portrait figcaption { margin-top: 30px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
.pull-quote {
  font-family: var(--serif-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.4; color: var(--ink);
  border-left: 2px solid var(--slate-blue);
  padding-left: 28px;
  margin: 2em 0;
}

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 26px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--serif-text); font-size: 17.5px; color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--hairline-dark);
  border-radius: 0;
  padding: 10px 2px 14px;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--slate-blue); box-shadow: 0 1px 0 var(--slate-blue); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 14.5px; color: var(--stone); }

/* ---------- footer ---------- */
.footer { background: var(--slate); color: #AEB7C2; margin-top: clamp(60px, 9vw, 140px); }
.footer a { transition: color .3s; }
.footer a:hover { color: var(--white); }
.footer__top { display: grid; grid-template-columns: minmax(260px, 1.3fr) 1fr 1fr 1fr; gap: clamp(30px, 4vw, 70px); padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 5vw, 70px); }
@media (max-width: 1000px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand .brand__name { color: var(--white); font-size: 22px; }
.footer__brand p { font-size: 15.5px; line-height: 1.75; margin-top: 18px; max-width: 34em; }
.footer h4 { font-size: 12.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: #7E8896; margin-bottom: 20px; }
.footer li { margin-bottom: 12px; }
.footer li a { font-size: 15.5px; }
.footer__bottom {
  border-top: 1px solid var(--hairline-dark);
  padding: 26px 0;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px; letter-spacing: .04em;
}
.footer__bottom .fine { color: #7E8896; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(18, 22, 27, .96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
  padding: clamp(16px, 4vw, 60px);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; height: auto; box-shadow: 0 40px 120px rgba(0,0,0,.5); }
.lightbox__caption { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #C9D0D8; font-family: var(--serif-text); font-size: 15.5px; text-align: center; max-width: 80vw; }
.lightbox__close {
  position: absolute; top: 18px; right: 22px;
  color: #C9D0D8; font-size: 34px; line-height: 1;
  padding: 10px; min-width: 44px; min-height: 44px;
}
.lightbox__close:hover { color: var(--white); }

/* ---------- reveal animations ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }

html.noanim *, html.noanim *::before, html.noanim *::after { animation: none !important; transition: none !important; }
html.noanim .rv { opacity: 1 !important; transform: none !important; }
html.noanim .jgrid .ph img { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
  .jgrid .ph img { opacity: 1; }
}

/* ---------- skip link + focus ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; font-size: 15px;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--slate-blue); outline-offset: 3px;
}

/* ---------- subject chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  font-size: 13.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--hairline-dark);
  color: var(--body);
  padding: 10px 18px;
  min-height: 42px; display: inline-flex; align-items: center;
  transition: background .35s, color .35s, border-color .35s;
}
.chip:hover, .chip[aria-current="page"] { background: var(--slate); border-color: var(--slate); color: var(--white); }
.band-dark .chip { border-color: var(--hairline-dark); color: #C7CDD6; }
.band-dark .chip:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

/* ---------- empty-state (news/blog/events) ---------- */
.empty-note {
  border: 1px solid var(--hairline);
  background: var(--white);
  padding: clamp(34px, 5vw, 60px);
  max-width: 720px;
}
.empty-note p { font-family: var(--serif-text); font-size: 18px; color: var(--body); }
.empty-note .then { margin-top: 22px; }

/* ---------- misc ---------- */
.center { text-align: center; }
.mt-l { margin-top: clamp(34px, 5vw, 60px); }
.mt-m { margin-top: 26px; }
.two-col-prose { columns: 2; column-gap: 60px; }
@media (max-width: 800px) { .two-col-prose { columns: 1; } }

/* print */
@media print {
  .topbar, .footer, .hero__dots, .plate-cta, .pn-nav { display: none !important; }
}
