
:root {
  color-scheme: light;
  --ink: #15212a;
  --muted: #61717c;
  --paper: #ffffff;
  --soft: #f4f7f3;
  --line: #dfe7e2;
  --green: #16835d;
  --teal: #0d7282;
  --red: #ef3e32;
  --gold: #f3b833;
  --shadow: 0 14px 36px rgba(17, 32, 43, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand img { width: 156px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 10px 12px;
  border-radius: 6px;
  color: #20323d;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.nav-link:hover,
.nav-link.is-active { background: #e9f3ef; color: var(--green); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 700;
}

.hero,
.page-hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(8, 19, 25, .78), rgba(8, 19, 25, .42), rgba(8, 19, 25, .18)),
    var(--hero-image) center / cover;
  color: white;
}
.page-hero.compact { min-height: 340px; }
.hero-content,
.page-hero > div {
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(44px, 8vw, 92px); }
h2 { font-size: clamp(28px, 5vw, 48px); }
h3 { font-size: 23px; }
.hero p { max-width: 670px; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}
.button.primary { background: var(--red); color: white; }
.button.secondary { background: white; color: var(--ink); }

.content-band {
  padding: clamp(46px, 8vw, 86px) clamp(18px, 5vw, 72px);
}
.content-band.alt { background: var(--soft); }
.section-title {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-title p:last-child { color: var(--muted); font-size: 18px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}
.feature-grid div {
  border-top: 4px solid var(--green);
  background: white;
  box-shadow: var(--shadow);
  padding: 24px;
}
.feature-grid strong { display: block; color: var(--teal); font-size: 40px; line-height: 1; }
.feature-grid span { display: block; color: var(--muted); margin-top: 8px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.item-card,
.event-panel,
.media-tile,
.contact-card,
.quote-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(17, 32, 43, .08);
}
.item-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.item-card div { padding: 20px; }
.item-card p, .event-panel p, .quote-box p, .contact-card p { color: var(--muted); }

.event-stack {
  display: grid;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.event-panel {
  display: grid;
  grid-template-columns: minmax(260px, 38%) 1fr;
}
.event-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.event-panel div { padding: 28px; }

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
}
.two-column > div p { font-size: 17px; color: #41515c; }
.quote-box,
.contact-card { padding: 26px; align-self: start; }
.contact-card a { color: var(--teal); font-weight: 800; }

.gallery-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-tile {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #e5ece8;
}
.gallery-tile img,
.media-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .2s ease;
}
.gallery-tile:hover img { transform: scale(1.04); }
.media-tile h3 { padding: 18px; font-size: 18px; }

.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
}
.map {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #15212a;
  color: white;
}
.site-footer p { color: #b9c8cf; margin: 8px 0 0; }
.site-footer a { display: block; color: white; text-decoration: none; margin-bottom: 8px; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    background: white;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .feature-grid,
  .card-grid,
  .gallery-grid,
  .media-grid,
  .two-column,
  .contact-layout,
  .event-panel {
    grid-template-columns: 1fr;
  }
  .hero,
  .page-hero { min-height: 520px; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .brand img { width: 132px; }
  .site-header { min-height: 66px; }
  .site-nav { top: 65px; }
  h1 { font-size: 42px; }
  .hero p { font-size: 17px; }
  .hero-actions .button { width: 100%; }
}
