@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --cream: #f7f3eb;
  --paper: #fdfbf7;
  --ink: #1d1d1a;
  --muted: #6e6b64;
  --line: #cfc9bd;
  --focus: #0f5c5a;
  font-family: "Plus Jakarta Sans", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body { margin: 0; color: var(--ink); background: var(--cream); font-size: 16px; line-height: 1.55; }
button { color: inherit; font: inherit; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
body.dialog-open { overflow: hidden; }

.site-header, .site-footer, .intro, .gallery-section, .presentation, .review { padding-right: max(5vw, 1.5rem); padding-left: max(5vw, 1.5rem); }
.site-header { display: flex; align-items: center; justify-content: space-between; min-height: 72px; border-bottom: 1px solid var(--line); }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.wordmark, .review-label, .eyebrow, .label, figcaption, .site-footer { letter-spacing: .08em; text-transform: uppercase; }
.wordmark { margin: 0; font-size: .9rem; font-weight: 700; letter-spacing: -.02em; text-transform: none; }
.review-label { margin: 0; color: var(--muted); font-size: .69rem; font-weight: 700; }
.print-action { padding: .48rem .68rem; border: 1px solid var(--line); color: var(--ink); background: transparent; cursor: pointer; font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.print-action:hover { border-color: var(--ink); background: var(--paper); }

.intro { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: 3rem; align-items: end; min-height: 72vh; padding-top: 8rem; padding-bottom: 5rem; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 .9rem; color: var(--muted); font-size: .69rem; font-weight: 700; }
h1, h2, p { text-wrap: pretty; }
h1 { grid-column: 1 / -1; max-width: 1100px; margin: 0; font-size: clamp(3.35rem, 8.4vw, 8.8rem); font-weight: 600; letter-spacing: -.075em; line-height: 1.04; }
.intro-detail { grid-column: 2; }
.intro-detail p { margin: 0; font-size: 1rem; }
.approval-notice { margin-top: 1.25rem !important; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem !important; }
.text-link { display: inline-block; margin-top: 2rem; padding-bottom: .22rem; border-bottom: 1px solid var(--ink); color: inherit; font-size: .84rem; font-weight: 700; text-decoration: none; }

.gallery-section, .presentation, .review { padding-top: 3.5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-heading .eyebrow { margin: 0; }
.section-heading > p:last-child { max-width: 300px; margin: 0; color: var(--muted); font-size: .83rem; text-align: right; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.excerpt { display: flex; flex-direction: column; min-width: 0; margin: 0; padding: clamp(1rem, 2.2vw, 2.25rem); background: var(--paper); }
.image-button { position: relative; display: grid; place-items: center; width: 100%; min-height: 340px; padding: 1.25rem; border: 0; background: #eeece6; cursor: zoom-in; overflow: hidden; }
.image-button img { display: block; width: 100%; height: 100%; max-height: 560px; object-fit: contain; transition: transform 220ms ease, filter 220ms ease; }
.image-button:hover img { filter: brightness(.96); transform: scale(1.012); }
.image-action { position: absolute; right: .75rem; bottom: .75rem; padding: .38rem .55rem; color: var(--paper); background: var(--ink); font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: 0; transition: opacity 180ms ease; }
.image-button:hover .image-action, .image-button:focus-visible .image-action { opacity: 1; }
.excerpt-spread { grid-column: span 1; }
figcaption { display: flex; gap: .65rem; align-items: baseline; padding-top: .9rem; color: var(--ink); font-size: .68rem; font-weight: 700; }
figcaption span, figcaption em { color: var(--muted); font-style: normal; }
figcaption em { margin-left: auto; }

.presentation { background: var(--paper); }
.presentation-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.presentation-grid > div { min-height: 0; padding: 1.2rem 2rem 1.25rem 0; border-bottom: 1px solid var(--line); }
.presentation-grid > div:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--line); }
.presentation-grid > div:nth-child(even) { padding-left: 2rem; }
.label { margin: 0 0 .8rem; color: var(--muted); font-size: .68rem; font-weight: 700; }
.presentation-grid p:last-child { max-width: 480px; margin: 0; font-size: .96rem; }

.print-section { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem max(5vw, 1.5rem); border-bottom: 1px solid var(--line); background: var(--paper); }
.print-section p { margin: 0; }
.print-section .eyebrow { margin-bottom: .55rem; }
.print-section > div > p:last-child { color: var(--muted); font-size: .86rem; }
.print-status { min-height: 1.3em; margin-top: .45rem !important; color: var(--muted); font-size: .75rem !important; }

.review { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.print-approval { display: none; }
.review .eyebrow { margin-bottom: .8rem; }
h2 { max-width: 560px; margin: 0; font-size: clamp(2rem, 4vw, 4.1rem); font-weight: 600; letter-spacing: -.065em; line-height: .98; }
.review-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; justify-content: flex-start; }
.button { display: inline-flex; align-items: center; min-height: 48px; padding: .7rem 1rem; border: 1px solid var(--ink); color: var(--ink); background: transparent; cursor: pointer; font-size: .82rem; font-weight: 700; text-decoration: none; }
.button:hover { background: #ece8df; }
.button-primary { color: var(--paper); background: var(--ink); }
.button-primary:hover { color: var(--ink); background: transparent; }
.response-message { width: 100%; min-height: 2.8em; margin: .55rem 0 0; color: var(--muted); font-size: .78rem; }
.reply-panel { display: grid; width: 100%; gap: .75rem; margin-top: 1.1rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.reply-meta { display: grid; gap: .25rem; }
.reply-meta .label, .reply-meta p { margin: 0; }
.reply-meta p { font-size: .8rem; }
.reply-meta span { display: inline-block; min-width: 62px; color: var(--muted); font-size: .69rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.reply-panel label { color: var(--muted); font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.reply-panel textarea { width: 100%; min-height: 132px; resize: vertical; padding: .85rem; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--paper); font: inherit; font-size: .85rem; line-height: 1.45; }
.reply-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.reply-actions .text-link { margin-top: 0; }
.copy-status { min-height: 1.3em; margin: 0; color: var(--muted); font-size: .76rem; }

.site-footer { display: grid; grid-template-columns: 1fr minmax(260px, 430px); gap: 2rem; padding-top: 1.3rem; padding-bottom: 1.8rem; color: var(--muted); font-size: .65rem; }
.site-footer p { margin: 0; }
.site-footer p:last-child { letter-spacing: 0; line-height: 1.55; text-transform: none; }

.image-dialog { width: min(1200px, 94vw); max-width: none; max-height: 92vh; padding: 0; border: 1px solid var(--line); background: var(--paper); color: var(--ink); }
.image-dialog::backdrop { background: rgb(23 22 19 / .74); }
.dialog-shell { display: grid; grid-template-rows: auto minmax(0, 1fr); max-height: 90vh; }
.dialog-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 58px; padding: 0 1rem 0 1.35rem; border-bottom: 1px solid var(--line); }
.dialog-bar p { margin: 0; font-size: .8rem; font-weight: 700; }
.close-button { padding: .5rem .1rem .5rem .5rem; border: 0; background: transparent; cursor: pointer; font-size: .78rem; font-weight: 700; }
.close-button span { font-size: 1.25rem; vertical-align: -1px; }
.dialog-shell img { display: block; width: 100%; height: calc(90vh - 58px); padding: 1.5rem; object-fit: contain; background: #eeece6; }

@media (max-width: 760px) {
  .intro { grid-template-columns: 1fr; min-height: auto; padding-top: 5.5rem; }
  .intro-detail { grid-column: 1; max-width: 520px; }
  .section-heading, .review, .site-footer { grid-template-columns: 1fr; display: grid; gap: 1.2rem; }
  .print-section { display: grid; gap: 1.2rem; }
  .section-heading > p:last-child { text-align: left; }
  .gallery-grid, .presentation-grid { grid-template-columns: 1fr; }
  .excerpt { min-height: 0; }
  .image-button { min-height: 280px; }
  .presentation-grid > div, .presentation-grid > div:nth-child(odd), .presentation-grid > div:nth-child(even) { min-height: 0; padding: 1.3rem 0; border-right: 0; }
  h1 { font-size: clamp(3.1rem, 15.5vw, 5.2rem); }
  .site-footer { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .image-button img, .image-action { transition: none; }
}

@page {
  size: Letter;
  margin: 0.65in;
}

@media print {
  :root { --cream: #fff; --paper: #fff; --line: #a7a39a; }
  html, body { background: #fff; }
  body { font-size: 10pt; line-height: 1.4; }
  .site-header, .site-footer, .intro, .gallery-section, .presentation, .review { padding-right: 0; padding-left: 0; }
  .site-header { min-height: auto; padding-bottom: .18in; }
  .header-actions { gap: 0; }
  .print-section, .print-action, .text-link, .image-action, .review-actions, .site-footer p:last-child { display: none !important; }
  .review-label { font-size: 7pt; }
  .intro { display: block; min-height: auto; padding-top: .55in; padding-bottom: .42in; }
  .intro .eyebrow { margin-bottom: .12in; }
  h1 { max-width: 7in; font-size: 38pt; line-height: 1.04; }
  .intro-detail { max-width: 4.7in; margin-top: .3in; margin-left: auto; }
  .intro-detail p { font-size: 10pt; }
  .gallery-section, .presentation { padding-top: .38in; padding-bottom: .42in; }
  .section-heading { margin-bottom: .18in; }
  .section-heading > p:last-child { max-width: 2.6in; font-size: 8pt; }
  .gallery-grid { gap: .5pt; }
  .excerpt { padding: .18in; break-inside: avoid; }
  .image-button { min-height: 0; padding: .08in; cursor: default; }
  .image-button img { max-height: 3.15in; }
  figcaption { padding-top: .1in; font-size: 7pt; }
  .presentation-grid > div { padding-top: .13in; padding-bottom: .13in; }
  .presentation-grid p:last-child { font-size: 8.5pt; }
  .label, .eyebrow { font-size: 7pt; }
  .approval-notice { margin-top: .18in !important; padding-top: .1in; font-size: 8pt !important; }
  .review { display: block; padding-top: .3in; padding-bottom: 0; }
  .review h2 { font-size: 22pt; }
  .print-approval { display: block; max-width: 5.6in; margin-top: .22in; padding-top: .16in; border-top: 1px solid var(--line); }
  .print-approval > p { margin: .08in 0; font-size: 8.5pt; }
  .print-approval .label { margin-bottom: .12in; }
  .print-approval .approval-line { margin-top: .16in; font-weight: 600; }
  .print-approval .approval-field { color: var(--muted); }
  .image-dialog { display: none !important; }
}
