:root {
  --green: #085023;
  --green-deep: #063d1b;
  --ink: #162316;
  --bronze: #a36e09;
  --cream: #f7f4ed;
  --cream-2: #ebe6da;
  --muted: #5c6355;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;
  --shell: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- header ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  color: var(--cream);
  transition: background-color .35s ease, padding .35s ease, color .35s ease;
}
.topbar.is-solid {
  background: var(--cream);
  color: var(--ink);
  padding: 12px 28px;
  border-bottom: 1px solid rgba(22, 35, 22, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-mark svg { width: 100%; height: 100%; fill: currentColor; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .01em;
}
.brand-sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .22em;
  margin-top: 5px;
  color: var(--bronze);
}
.topbar:not(.is-solid) .brand-sub { color: #e2cfa4; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
  color: inherit;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .05em;
}
.menu-btn span { display: block; }
.menu-bars { width: 26px; }
.menu-bars i {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 6px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-open .menu-bars i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-open .menu-bars i:nth-child(2) { opacity: 0; }
.menu-open .menu-bars i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- overlay nav ---------- */

.nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  overflow-y: auto;
}
.nav.is-open { opacity: 1; visibility: visible; }

.nav-inner {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 120px 28px 60px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: end;
}

.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list li + li { margin-top: 4px; }
.nav-list a {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  color: var(--cream);
  padding: 2px 0;
  transition: color .25s ease;
}
.nav-list a:hover { color: #e2cfa4; }
.nav-list a.is-current { color: #e2cfa4; }

.nav-aside { padding-bottom: 10px; }
.nav-aside p { margin: 0 0 18px; font-size: 14px; line-height: 1.85; color: #cddac9; }
.nav-aside a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(247, 244, 237, .35); }
.nav-contact { font-size: 15px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 40, 18, .70) 0%, rgba(6, 40, 18, .36) 44%, rgba(6, 40, 18, .02) 80%),
    linear-gradient(to bottom, rgba(6, 40, 18, .40) 0%, rgba(6, 40, 18, .06) 38%, rgba(6, 40, 18, .52) 100%);
}
.hero-body {
  position: relative;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px 104px;
  color: var(--cream);
}
.hero-line {
  width: 1px;
  height: 74px;
  background: rgba(226, 207, 164, .8);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 26px;
  max-width: 17ch;
}
.hero-note {
  font-size: 15px;
  line-height: 1.8;
  max-width: 42ch;
  margin: 0 0 32px;
  color: #dfe8dc;
}
.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .04em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  opacity: .9;
}
.hero-cue i {
  width: 1px;
  height: 34px;
  background: currentColor;
  animation: cue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(.3); opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-solid { background: var(--green); color: var(--cream); }
.btn-solid:hover { background: var(--green-deep); }
.btn-ghost { border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(247, 244, 237, .14); }
.btn-outline { border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- section frame ---------- */

.band { padding: 108px 0; }
.band-alt { background: var(--cream-2); }
.band-dark { background: var(--green); color: var(--cream); }

.lede { max-width: 62ch; }
.lede h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.14;
  margin: 0 0 22px;
}
.lede p { margin: 0 0 18px; }
.lede p:last-child { margin-bottom: 0; }
.band-dark .lede p { color: #dbe5d8; }

.rule {
  width: 54px;
  height: 1.5px;
  background: var(--bronze);
  margin: 0 0 30px;
  border: 0;
}

/* ---------- venue ---------- */

.venue-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.venue-figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.venue-figs img { width: 100%; object-fit: cover; border-radius: 2px; }
.venue-figs .tall { grid-column: 1; grid-row: 1 / span 2; height: 100%; }
.venue-figs .wide { grid-column: 2; aspect-ratio: 3 / 2; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 72px;
  background: rgba(22, 35, 22, .12);
}
.stat { background: var(--cream); padding: 30px 26px; }
.band-alt .stat { background: var(--cream-2); }
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: var(--green);
}
.stat span {
  display: block;
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- services ---------- */

.svc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 36px;
}
.svc figure { margin: 0 0 20px; overflow: hidden; border-radius: 2px; }
.svc img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 10px;
}
.svc p { margin: 0; font-size: 14.5px; line-height: 1.8; color: var(--muted); }

/* ---------- reasons ---------- */

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(247, 244, 237, .22);
}
.reason { background: var(--green); padding: 34px 30px; }
.reason h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--cream);
}
.reason p { margin: 0; font-size: 14.5px; line-height: 1.8; color: #cbd8c8; }

/* ---------- gallery teaser ---------- */

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 50px 0 44px;
}
.gal-grid a { display: block; overflow: hidden; border-radius: 2px; }
.gal-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .5s ease;
}
.gal-grid a:hover img { transform: scale(1.04); }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.about-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 2px; }

/* ---------- cta ---------- */

.cta { padding: 96px 0; background: var(--green-deep); color: var(--cream); text-align: center; }
.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.16;
  margin: 0 auto 20px;
  max-width: 22ch;
}
.cta p { margin: 0 auto 32px; max-width: 48ch; color: #cddac9; font-size: 15px; }
.cta .btn-row { justify-content: center; }

/* ---------- footer ---------- */

.foot { background: var(--ink); color: #cfd6cd; padding: 76px 0 34px; font-size: 14.5px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}
.foot h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--bronze);
  margin: 0 0 18px;
}
.foot p { margin: 0 0 12px; line-height: 1.8; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 10px; }
.foot a { text-decoration: none; color: #e6ebe4; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot-brand { color: var(--cream); }
.foot-brand .brand-name { font-size: 30px; }
.foot-note {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(207, 214, 205, .18);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 12.5px;
  color: #96a094;
}

.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(6, 40, 18, .3);
}
.wa svg { width: 27px; height: 27px; fill: currentColor; }

/* ---------- subpages ---------- */

.page-head { padding: 168px 0 62px; background: var(--cream-2); }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.1;
  margin: 0 0 16px;
}
.page-head p { margin: 0; max-width: 56ch; color: var(--muted); }

.masonry { columns: 3; column-gap: 14px; }
.masonry img {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 2px;
  break-inside: avoid;
}

.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 64px; align-items: start; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(22, 35, 22, .22);
  border-radius: 2px;
  padding: 13px 14px;
  transition: border-color .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 80, 35, .12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; line-height: 1.7; color: var(--muted); margin-bottom: 24px; }
.consent input { width: 17px; height: 17px; margin-top: 3px; flex: none; }
.form-note { font-size: 13px; color: var(--muted); margin: 18px 0 0; }

.info-card { background: var(--cream-2); padding: 34px 30px; border-radius: 2px; }
.info-card h3 { font-family: var(--serif); font-size: 25px; font-weight: 500; margin: 0 0 20px; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { padding: 14px 0; border-top: 1px solid rgba(22, 35, 22, .12); }
.info-list li:first-child { border-top: 0; padding-top: 0; }
.info-list b { display: block; font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--bronze); margin-bottom: 5px; }
.info-list a { text-decoration: none; border-bottom: 1px solid rgba(22, 35, 22, .25); }

.map-frame { margin-top: 20px; border-radius: 2px; overflow: hidden; background: var(--cream-2); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-empty {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(163, 110, 9, .45);
}
.map-empty p { margin: 0; text-align: center; font-size: 14px; color: var(--green); }
.map-empty span { display: block; margin-top: 8px; font-size: 12.5px; line-height: 1.7; color: var(--muted); }

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .venue-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .svc-grid, .reasons, .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-cue { bottom: 22px; }
  .nav-inner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .shell, .topbar { padding-left: 20px; padding-right: 20px; }
  .band { padding: 76px 0; }
  .cta { padding: 76px 0; }
  .page-head { padding: 136px 0 48px; }
  .hero { align-items: flex-end; }
  .hero-body { padding: 0 20px 76px; }
  .hero-veil {
    background: linear-gradient(to bottom, rgba(6, 40, 18, .42) 0%, rgba(6, 40, 18, .04) 26%, rgba(6, 40, 18, .48) 58%, rgba(6, 40, 18, .88) 100%);
  }
  .hero-note { font-size: 14.5px; }
  .brand-name { font-size: 21px; }
  .brand-mark { width: 29px; height: 29px; }
  .menu-btn .menu-label { display: none; }
  .nav-inner { padding: 104px 20px 56px; }
  .svc-head { flex-direction: column; align-items: flex-start; gap: 22px; margin-bottom: 40px; }
  .svc-grid { gap: 38px; }
  .venue-figs { grid-template-columns: 1fr; gap: 12px; }
  .venue-figs .tall { grid-column: 1; grid-row: auto; height: auto; aspect-ratio: 4 / 5; }
  .venue-figs .wide { grid-column: 1; }
  .stats { margin-top: 48px; }
  .gal-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .svc-grid, .reasons { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-cue { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .masonry { columns: 1; }
  .btn { width: 100%; }
  .cta .btn-row, .btn-row { flex-direction: column; }
}
