:root {
  --ink: #17201a;
  --muted: #5c6b61;
  --green: #214f35;
  --green-2: #386b4a;
  --gold: #c7a45b;
  --mist: #eef3ef;
  --paper: #fbfaf6;
  --line: #d8e0d8;
  --white: #fff;
  --shadow: 0 14px 34px rgba(23, 32, 26, .14);
}

* {
  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;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 54px;
  text-decoration: none;
  min-width: 190px;
}

.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  background: url("photos/logo-small.png") center / contain no-repeat;
}

.brand strong {
  color: var(--green);
  font-size: 19px;
  line-height: 1.05;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green-2);
}

.nav-links .button {
  border-color: var(--gold);
  background: var(--gold);
  color: #211a0b;
}

.nav-links .button:hover {
  border-color: #b28c3f;
  background: #b28c3f;
  color: #211a0b;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--green);
}

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #211a0b;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(13, 27, 18, .78), rgba(13, 27, 18, .38) 47%, rgba(13, 27, 18, .08)),
    url("photos/DSCF0728.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 96px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  max-width: 690px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
}

.hero-actions,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.quick-strip {
  background: var(--green);
  color: var(--white);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.quick-grid a {
  min-height: 110px;
  padding: 22px;
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
}

.quick-grid strong {
  display: block;
  font-size: 18px;
}

.quick-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.section {
  padding: 74px 0;
}

.status-band {
  padding: 24px 0;
  background: #e7eee8;
  border-bottom: 1px solid var(--line);
}

.course-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(23, 32, 26, .08);
}

.status-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.status-label.closed {
  background: #9f2f2f;
}

.status-label.caution {
  background: #b98521;
  color: #221704;
}

.course-status h2,
.course-status h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.course-status p {
  color: var(--muted);
}

.status-meta {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.status-details {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.status-pill {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.section.mist {
  background: var(--mist);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 52px;
  align-items: start;
}

.section-text {
  display: grid;
  gap: 18px;
}

.section-text p {
  color: var(--muted);
  font-size: 17px;
}

.feature-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.panel,
.price,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-list li {
  padding: 16px;
}

.feature-list strong,
.price strong {
  display: block;
  color: var(--green);
}

.panel {
  padding: 26px;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin-bottom: 12px;
}

.panel p,
.notice p,
.plain-list li {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.photo-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo {
  overflow: hidden;
  min-height: 260px;
  border-radius: 8px;
  background: var(--mist);
}

.photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.media-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  min-height: 340px;
  height: 100%;
  object-fit: cover;
}

.price .amount {
  margin: 8px 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
}

.hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.hours .panel {
  box-shadow: none;
}

.hours dl {
  display: grid;
  grid-template-columns: minmax(130px, .8fr) 1.2fr;
  gap: 10px 18px;
  margin: 18px 0 0;
}

.hours dt {
  color: var(--green);
  font-weight: 800;
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.document-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.document-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.document-list a::after {
  content: "Open";
  color: var(--muted);
  font-size: 13px;
}

.prose {
  max-width: 900px;
}

.prose h2 {
  margin-top: 32px;
}

.prose p,
.prose li {
  line-height: 1.7;
}

.prose ol,
.prose ul {
  padding-left: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.faq-list summary {
  padding: 17px 48px 17px 18px;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-list details a {
  color: var(--green);
  font-weight: 700;
}

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.price {
  padding: 22px;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.notice {
  margin-top: 26px;
  padding: 20px;
}

.page-hero {
  background: var(--green);
  color: var(--white);
  padding: 72px 0;
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.hidden {
  display: none;
}

.site-footer {
  padding: 44px 0;
  background: #111913;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}

.site-footer a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, .72);
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .quick-grid,
  .course-status,
  .split,
  .cards,
  .photo-grid,
  .photo-grid.two,
  .prices,
  .hours,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .status-meta {
    text-align: left;
  }

  .hero {
    min-height: 68vh;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-links a:not(.button) {
    width: calc(50% - 9px);
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }
}
