
:root{
  --bg:#f7f4ee;
  --surface:#ffffff;
  --surface-2:#f1ece2;
  --text:#2c2420;
  --muted:#6d6258;
  --gold:#b8860b;
  --gold-soft:#ead7a6;
  --brown:#7b4f00;
  --accent:#5e3b00;
  --shadow:0 16px 40px rgba(58,40,11,.10);
  --radius:24px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(234,215,166,.30), transparent 24rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  color:var(--text);
  line-height:1.65;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(calc(100% - 2rem), var(--max)); margin:0 auto}
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(247,244,238,.84);
  border-bottom:1px solid rgba(123,79,0,.12);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  min-height:74px;
}
.brand{
  display:flex; flex-direction:column; gap:.15rem;
  text-decoration:none;
}
.brand-title{
  font-weight:800; letter-spacing:.02em; font-size:1.1rem;
}
.brand-sub{
  color:var(--muted); font-size:.95rem;
}
.brand-sub a{
  color:var(--muted); text-decoration:none;
}
.brand-sub a:hover{color:var(--accent); text-decoration:underline}
.nav-links{
  display:flex; flex-wrap:wrap; gap:.65rem;
}
.nav-links a{
  text-decoration:none;
  padding:.6rem .95rem;
  border-radius:999px;
  color:var(--accent);
  background:rgba(234,215,166,.26);
  border:1px solid rgba(123,79,0,.12);
  font-weight:600;
}
.nav-links a:hover{background:rgba(234,215,166,.42)}
.hero{padding:4.5rem 0 2.5rem}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:2rem;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  padding:.35rem .7rem;
  background:rgba(234,215,166,.45);
  color:var(--accent);
  border-radius:999px;
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.02em;
}
h1{
  font-size:clamp(2.3rem, 5vw, 4.6rem);
  line-height:1.04;
  margin:.8rem 0 1rem;
  letter-spacing:-.03em;
}
h2{
  font-size:clamp(1.6rem, 3vw, 2.4rem);
  line-height:1.12;
  margin:0 0 1rem;
}
h3{
  font-size:1.2rem;
  margin:0 0 .65rem;
}
.lead{
  font-size:1.1rem;
  color:var(--muted);
  max-width:58ch;
}
.hero-actions{display:flex; flex-wrap:wrap; gap:.9rem; margin-top:1.4rem}
.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9rem 1.2rem;
  border-radius:14px;
  font-weight:700;
  text-decoration:none;
  border:1px solid transparent;
}
.button.primary{background:var(--accent); color:white; box-shadow:var(--shadow)}
.button.secondary{background:transparent; color:var(--accent); border-color:rgba(123,79,0,.2)}
.hero-card,.panel,.year-card,.feature-card,.gallery-wrap,.info-band{
  background:var(--surface);
  border:1px solid rgba(123,79,0,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{
  overflow:hidden;
}
.hero-card img{width:100%; height:min(62vh, 580px); object-fit:cover}
.hero-card .caption{
  padding:1rem 1.15rem;
  color:var(--muted);
  font-size:.96rem;
}
.section{padding:1.25rem 0 4rem}
.grid-2,.grid-3{
  display:grid; gap:1.2rem;
}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.panel{padding:1.35rem}
.kicker{
  text-transform:uppercase;
  letter-spacing:.10em;
  color:var(--brown);
  font-size:.8rem;
  font-weight:800;
  margin-bottom:.7rem;
}
.muted{color:var(--muted)}
.year-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.year-card img{
  aspect-ratio:16/10;
  object-fit:cover;
}
.year-card .content{padding:1.25rem}
.meta{
  color:var(--muted);
  font-size:.96rem;
}
.inline-links{
  display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1rem;
}
.inline-links a{
  color:var(--accent);
  font-weight:700;
  text-underline-offset:3px;
}
.info-band{
  padding:1.2rem 1.3rem;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin:1rem 0 2rem;
}
.info-band strong{display:block; margin-bottom:.25rem}
.gallery-intro{
  display:flex; justify-content:space-between; gap:1rem; align-items:end;
  margin-bottom:1rem;
}
.gallery-wrap{
  padding:1rem;
}
.scroll-gallery{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(260px, 32%);
  gap:1rem;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  padding-bottom:.4rem;
  scroll-snap-type:x proximity;
}
.scroll-gallery::-webkit-scrollbar{height:12px}
.scroll-gallery::-webkit-scrollbar-thumb{
  background:rgba(123,79,0,.28);
  border-radius:999px;
}
.gallery-item{
  scroll-snap-align:start;
  min-width:0;
}
.gallery-button{
  all:unset;
  cursor:pointer;
  display:block;
}
.gallery-figure{
  background:var(--surface-2);
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(123,79,0,.12);
}
.gallery-figure img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  transition:transform .25s ease;
}
.gallery-button:hover img{transform:scale(1.03)}
.gallery-figure figcaption{
  padding:.85rem .95rem;
  font-size:.94rem;
  color:var(--muted);
}
.footer{
  padding:2rem 0 3rem;
  color:var(--muted);
}
.lightbox{
  position:fixed; inset:0; background:rgba(25,18,8,.82);
  display:none; align-items:center; justify-content:center;
  padding:2rem; z-index:100;
}
.lightbox.open{display:flex}
.lightbox-panel{
  position:relative;
  max-width:min(1200px, 96vw);
  max-height:90vh;
  background:#111;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}
.lightbox img{
  max-width:min(1200px, 96vw);
  max-height:78vh;
  width:auto; height:auto;
  display:block;
}
.lightbox-caption{
  padding:.95rem 1.1rem;
  color:#eee; background:#181818;
}
.lightbox-close{
  position:absolute; top:.8rem; right:.8rem;
  width:42px; height:42px; border:none; border-radius:999px;
  background:rgba(255,255,255,.14); color:white; font-size:1.4rem; cursor:pointer;
}
.banner{
  position:relative;
  overflow:hidden;
}
.banner::after{
  content:"";
  position:absolute; inset:auto -5% -25% auto;
  width:18rem; height:18rem;
  background:radial-gradient(circle, rgba(234,215,166,.45), rgba(234,215,166,0));
}
@media (max-width: 980px){
  .hero-grid,.grid-2,.grid-3,.info-band{grid-template-columns:1fr}
  .scroll-gallery{grid-auto-columns:minmax(250px, 82%)}
  .nav{padding:.65rem 0}
}
@media (max-width: 700px){
  .hero{padding:3rem 0 2rem}
  .nav{align-items:flex-start; flex-direction:column}
  .nav-links{width:100%}
  .nav-links a{flex:1 1 auto; text-align:center}
}
