:root {
  --ink: #20332e;
  --forest: #173f35;
  --deep: #0b2925;
  --paper: #f7f3eb;
  --cream: #eee5d6;
  --gold: #c79c5e;
  --rose: #a94f48;
  --muted: #6b7973;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3, .brand { font-family: var(--serif); font-weight: 600; line-height: 1; }
h1 { margin: 0; font-size: clamp(60px, 10vw, 132px); letter-spacing: -.045em; }
h2 { margin: 0; font-size: clamp(42px, 6vw, 76px); letter-spacing: -.035em; }
h3 { margin: 0; font-size: 30px; }
p { margin: 0 0 18px; }
.topbar { background: var(--deep); color: #f5eddf; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.topbar .container { display: flex; min-height: 34px; align-items: center; justify-content: space-between; padding: 9px 0; }
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(31, 59, 51, .13);
  background: rgba(247, 243, 235, .94);
  backdrop-filter: blur(16px);
}
.nav { display: grid; min-height: 78px; grid-template-columns: max-content 1fr; align-items: center; gap: 20px; }
.brand { font-size: 28px; letter-spacing: -.02em; }
.brand small { display: block; color: var(--rose); font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 18px; white-space: nowrap; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-links a { transition: color .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.menu-toggle { display: none; border: 0; background: none; color: var(--forest); font-size: 24px; }
.hero { overflow: hidden; background: var(--forest); color: white; }
.hero-grid { display: grid; min-height: 560px; grid-template-columns: .96fr 1.04fr; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 64px 8vw 64px max(24px, calc((100vw - 1180px)/2)); }
.hero-copy h1 span { display: block; color: var(--gold); font-style: italic; font-weight: 400; }
.hero-copy .lead { max-width: 490px; margin-top: 28px; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 24px; line-height: 1.35; }
.hero-art { display: flex; min-height: 500px; flex-direction: column; background: var(--deep); }
.hero-image { position: relative; flex: 1; min-height: 400px; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,63,53,.32), transparent 50%); content: ""; }
.hero-note { position: absolute; right: 26px; bottom: 24px; z-index: 1; color: white; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 18px;
  padding: 14px 19px;
  border: 1px solid var(--gold);
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.button:hover { background: var(--gold); color: var(--deep); }
.section { padding: 68px 0; }
.section.alt { background: var(--cream); }
.intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: end; margin-bottom: 30px; }
.intro p { max-width: 630px; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(23,63,53,.18); }
.category-card { min-height: 285px; padding: 28px 22px; background: var(--paper); transition: background .3s ease, color .3s ease; }
.category-card:hover { background: var(--forest); color: white; }
.category-card .number { color: var(--gold); font-family: var(--serif); font-size: 72px; line-height: 1; }
.category-card p { margin: 26px 0 0; color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.category-card:hover p { color: rgba(255,255,255,.65); }
.scroll-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.scroll-controls { display: flex; gap: 8px; }
.scroll-controls button { width: 46px; height: 46px; border: 1px solid rgba(23,63,53,.25); color: var(--forest); background: transparent; cursor: pointer; transition: background .25s ease, color .25s ease; }
.scroll-controls button:hover { color: white; background: var(--forest); }
.landing-gallery { display: flex; gap: 15px; overflow-x: auto; padding: 0 0 18px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-color: var(--gold) transparent; }
.landing-gallery::-webkit-scrollbar { height: 7px; }
.landing-gallery::-webkit-scrollbar-thumb { background: var(--gold); }
.landing-art { position: relative; flex: 0 0 245px; height: 340px; overflow: hidden; background: var(--forest); scroll-snap-align: start; }
.landing-art img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: transform .45s ease, opacity .45s ease; }
.landing-art:hover img { opacity: .7; transform: scale(1.055); }
.landing-art span { position: absolute; right: 0; bottom: 0; left: 0; padding: 28px 16px 15px; color: white; background: linear-gradient(transparent, rgba(11,41,37,.88)); }
.landing-art b { display: block; font-family: var(--serif); font-size: 26px; line-height: 1; }
.landing-art small { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.quote { padding: 58px 0; background: var(--deep); color: #fff; text-align: center; }
.quote blockquote { max-width: 850px; margin: 0 auto; color: var(--gold); font-family: var(--serif); font-size: clamp(34px, 5vw, 58px); font-style: italic; line-height: 1.1; }
.quote p { margin: 22px 0 0; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.quote-photo {
  width: min(100%, 920px);
  max-height: 620px;
  margin: 34px auto 0;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.comments-preview-section { background: var(--paper); }
.comments-preview,
.comments-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.comments-list { margin-bottom: 28px; }
.comment-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-top: 4px solid var(--gold);
  background: var(--cream);
}
.comment-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  object-fit: cover;
}
.comment-card p {
  color: #3d514a;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.42;
}
.comment-card footer {
  display: grid;
  gap: 2px;
  color: var(--forest);
}
.comment-card b {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}
.comment-card span {
  color: var(--rose);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.page-hero { padding: 58px 0 38px; background: var(--forest); color: white; }
.page-hero p:last-child { max-width: 600px; margin-top: 18px; color: rgba(255,255,255,.7); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 30px; }
.filter-bar a { padding: 10px 13px; border: 1px solid rgba(23,63,53,.2); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.filter-bar a:hover, .filter-bar a.active { background: var(--forest); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 18px; }
.art-card { display: block; }
.art-card .frame { overflow: hidden; aspect-ratio: 4 / 4.7; background: #e5ddd0; }
.art-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.art-card:hover img { transform: scale(1.045); }
.art-card h3 { margin-top: 12px; font-size: 25px; }
.art-card p { margin: 3px 0 0; color: var(--rose); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.detail { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 46px; align-items: center; padding: 48px 0; }
.detail-image { max-height: 760px; margin: 0 auto; box-shadow: 0 18px 36px rgba(23,63,53,.14); object-fit: contain; }
.detail h1 { margin: 12px 0 20px; color: var(--forest); font-size: clamp(54px, 7vw, 88px); }
.detail .button { color: var(--forest); }
.prose { max-width: 850px; }
.prose p { margin-bottom: 22px; color: #455851; font-family: Georgia, serif; font-size: 18px; }
.bio-grid { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 38px; }
.bio-image { width: 100%; }
.award-grid { display: grid; grid-template-columns: minmax(270px, .8fr) minmax(0, 1.2fr); gap: 46px; align-items: start; }
.award-certificate { width: min(100%, 430px); box-shadow: 0 18px 36px rgba(23,63,53,.16); }
.exhibit-list { display: grid; gap: 1px; margin-top: 28px; background: rgba(23,63,53,.18); }
.exhibit { display: grid; grid-template-columns: 116px 1fr; gap: 20px; padding: 18px; background: var(--paper); }
.exhibit img { width: 116px; height: 84px; object-fit: cover; }
.exhibit h3 { margin-bottom: 5px; font-size: 26px; }
.exhibit p { margin: 0; color: var(--muted); font-size: 13px; }
.memorial-photo-section { padding: 46px 0 0; background: var(--paper); }
.memorial-portrait {
  width: min(100%, 850px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.memorial-portrait img {
  width: 100%;
  max-height: 760px;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 18px 36px rgba(23,63,53,.16);
}
.memorial-portrait figcaption {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.memorial { padding: 68px 0; }
.memorial .prose { columns: 2; column-gap: 54px; }
.memorial-copy {
  max-width: 850px;
  margin: 0 auto;
}
.memorial-copy h4 {
  margin: 0 0 24px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.45;
}
.memorial-copy p {
  margin-bottom: 20px;
  color: #455851;
  font-family: var(--serif);
  font-size: 18px;
}
.comment-form {
  display: grid;
  max-width: 760px;
  gap: 12px;
}
.comment-form label {
  color: var(--rose);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(23,63,53,.22);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}
.comment-form textarea { resize: vertical; }
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(199,156,94,.22);
}
.comment-form input[type="file"] {
  padding: 11px 14px;
  cursor: pointer;
}
.comment-form .button { background: transparent; cursor: pointer; }
.image-preview {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(23,63,53,.14);
  background: rgba(255,255,255,.54);
}
.image-preview:not(:empty) { display: flex; }
.image-preview img {
  width: 84px;
  height: 64px;
  object-fit: cover;
}
.image-preview span {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 13px;
}
.submitted-comments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.submitted-comments:empty { display: none; }
.site-footer { padding: 43px 0; background: var(--deep); color: rgba(255,255,255,.58); font-size: 12px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; }
.site-footer a { color: var(--gold); }
.tiiny-host,
.tiiny-host-footer,
.tinyhost,
.tinyhost-footer,
[id*="tiiny"],
[class*="tiiny"],
[href*="tiiny.host"],
[href*="tiiny.site"] {
  display: none !important;
}
.empty { padding: 42px 0; }

@media (max-width: 1080px) {
  .nav { grid-template-columns: max-content max-content; justify-content: space-between; min-height: 68px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 68px; right: 0; left: 0; display: none; padding: 22px 15px; background: var(--paper); box-shadow: 0 15px 20px rgba(11,41,37,.1); }
  .nav-links.open { display: grid; gap: 16px; justify-content: start; font-size: 11px; letter-spacing: .14em; }
}
@media (max-width: 900px) {
  .brand { font-size: 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 360px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .comments-preview,
  .comments-list { grid-template-columns: 1fr; }
  .detail { grid-template-columns: 1fr; gap: 30px; }
  .bio-grid { grid-template-columns: 1fr; }
  .award-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 30px, 1180px); }
  .topbar .container span:last-child { display: none; }
  .hero-grid { min-height: 0; }
  .hero-copy { padding: 48px 24px; }
  .hero-art { min-height: 290px; }
  .section, .memorial { padding: 46px 0; }
  .memorial-photo-section { padding-top: 32px; }
  .memorial-portrait img { max-height: none; }
  .page-hero { padding: 46px 0 30px; }
  .quote { padding: 44px 0; }
  .intro { display: block; margin-bottom: 22px; }
  .intro p { margin-top: 16px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 190px; }
  .landing-art { flex-basis: 210px; height: 290px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .art-card h3 { font-size: 21px; }
  .memorial .prose { columns: 1; }
  .submitted-comments { grid-template-columns: 1fr; }
  .footer-grid { display: block; }
}
