:root { color-scheme: light; --ink: #18221d; --paper: #f6f4ed; --green: #244b39; --gold: #c8a96a; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: var(--green); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 20; padding: .6rem 1rem; background: white; }
.skip-link:focus { top: 1rem; }
.site-header { position: relative; z-index: 10; color: white; background: var(--green); border-bottom: 1px solid rgba(255,255,255,.2); }
.header-inner { max-width: 1180px; min-height: 78px; margin: auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { color: white; text-decoration: none; text-transform: uppercase; letter-spacing: .2em; font-family: Georgia, serif; font-size: 1.2rem; }
.mod-menu { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; margin: 0; padding: 0; list-style: none; }
.mod-menu a { color: white; text-decoration: none; padding: .6rem 0; border-bottom: 2px solid transparent; }
.mod-menu .active > a, .mod-menu a:hover, .mod-menu a:focus { border-color: var(--gold); }
.gallery { min-height: calc(100vh - 78px); position: relative; overflow: hidden; background: #19251f; color: white; display: grid; place-items: center; }
.slides, .slide { position: absolute; inset: 0; margin: 0; }
.slide { opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.58) saturate(.85); }
.gallery::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(9,25,17,.5)); }
.gallery-copy { position: relative; z-index: 2; text-align: center; padding: 2rem; text-shadow: 0 2px 18px #000; }
.gallery-copy h1 { margin: 0; font: clamp(3rem, 9vw, 7rem)/1 Georgia, serif; letter-spacing: .03em; }
.eyebrow { margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .4em; font-size: .82rem; }
.dots { position: absolute; z-index: 3; bottom: 2rem; display: flex; gap: .65rem; }
.dots button { width: .75rem; height: .75rem; padding: 0; border: 1px solid white; border-radius: 50%; background: transparent; cursor: pointer; }
.dots button.active { background: white; }
.site-main { max-width: 1120px; min-height: 55vh; margin: auto; padding: 4rem 1.5rem; }
.home .site-main { min-height: 0; padding-top: 0; padding-bottom: 0; }
.home .site-main:empty { display: none; }
.site-footer { padding: 2.2rem 1.5rem; color: white; background: #162c22; text-align: center; letter-spacing: .12em; text-transform: uppercase; }
.error-page { max-width: 45rem; margin: 12vh auto; padding: 2rem; text-align: center; }
img { max-width: 100%; height: auto; }
@media (max-width: 650px) { .header-inner { align-items: flex-start; flex-direction: column; gap: .25rem; padding-top: 1rem; padding-bottom: 1rem; } .mod-menu { gap: .15rem 1rem; } .gallery { min-height: 72vh; } }
@media (prefers-reduced-motion: reduce) { .slide { transition: none; } }
