:root {
  --green: #5b6f54;
  --deep: #132018;
  --moss: #30472f;
  --cream: #f1e7d9;
  --paper: #fffaf2;
  --lavender: #b48cff;
  --rose: #c97569;
  --ink: #101610;
  --muted: #586653;
  --line: rgba(16, 22, 16, .16);
  --radius: 28px;
  --radius-lg: 44px;
  --shadow: 0 24px 70px rgba(28, 38, 24, .18);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

body :where(header, nav, main, section, article, div, form, a, button, input, textarea, select, img, table, th, td, footer, span, p, dl, dt, dd) {
  border-radius: var(--radius);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  margin: 0;
  padding: 14px 42px;
  background: rgba(91, 111, 84, .96);
  box-shadow: 0 10px 30px rgba(28, 38, 24, .12);
  backdrop-filter: blur(14px);
  border-radius: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.brand img {
  width: 76px;
  height: 64px;
  object-fit: contain;
  background: rgba(255, 250, 242, .24);
  padding: 6px;
}

.brand span {
  max-width: 220px;
  line-height: 1.1;
}

.site-header nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header nav a,
.site-footer nav a {
  padding: 10px 14px;
  text-decoration: none;
  font-size: 15px;
  background: rgba(255, 250, 242, .18);
}

.site-header nav a:hover,
.site-footer nav a:hover {
  background: var(--lavender);
  color: #111;
}

.site-footer nav a.admin-footer-link {
  background: rgba(255, 250, 242, .08);
  opacity: .72;
}

.site-footer nav a.admin-footer-link:hover {
  opacity: 1;
}

.hero {
  min-height: min(720px, 72vh);
  display: block;
  padding: 0;
  background-color: var(--green);
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-image {
  display: block;
  width: 100%;
  height: min(720px, 72vh);
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-panel {
  width: min(760px, 100%);
  padding: 42px;
  color: #fff;
  background: rgba(19, 32, 24, .46);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.kicker {
  margin: 0 0 12px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1,
.intro-band h1,
.section-heading h2,
.membership-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

.hero h1 {
  font-size: 78px;
}

.hero p:not(.kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: #111;
  color: #fff;
}

.button.secondary {
  background: var(--cream);
  color: #111;
}

.button:hover {
  transform: translateY(-1px);
}

.intro-band {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 310px;
  padding: 46px 20px 54px;
  text-align: center;
  background: var(--cream);
}

.intro-band h1 {
  font-size: 68px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

.intro-band p {
  margin: 0;
  font-size: 26px;
  line-height: 1.45;
}

.intro-band .kicker {
  margin: 0;
  color: var(--moss);
}

.intro-band .hero-actions {
  justify-content: center;
  margin-top: 4px;
}

.image-copy {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  background-image: linear-gradient(rgba(19, 32, 24, .22), rgba(19, 32, 24, .28)), var(--info-image);
  background-size: cover;
  background-position: center;
}

.soft-card,
.text-card,
.strain-card,
.location-card,
.member-form {
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .55);
}

.text-card {
  width: min(780px, 92vw);
  padding: 48px 56px;
  text-align: center;
}

.copy {
  font-size: 18px;
  line-height: 1.72;
}

.copy h3,
.copy h4,
.copy h2,
.text-card h2 {
  margin: 30px 0 10px;
  color: var(--moss);
}

.copy p,
.text-card p {
  margin: 0 0 18px;
}

.section {
  padding: 90px 6vw;
}

.cream {
  background: var(--cream);
}

.sage {
  background: var(--green);
}

.moss {
  background: var(--moss);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
}

.section-heading h2,
.membership-copy h2 {
  font-size: 56px;
}

.section-heading.light,
.light-copy {
  color: #fff;
}

.wide {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-copy {
  max-width: 960px;
  margin: 0 auto 38px;
}

.method-grid {
  max-width: 1180px;
  margin: 0 auto;
  columns: 2 360px;
  column-gap: 42px;
  padding: 42px;
  background: rgba(255, 250, 242, .92);
}

.method-grid h3 {
  break-after: avoid;
}

.strain-group {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 26px;
  max-width: 1320px;
  margin: 42px auto;
}

.strain-group > div:first-child {
  align-self: start;
  padding: 28px;
  background: rgba(255, 250, 242, .68);
  border: 1px solid var(--line);
}

.strain-group h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

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

.strain-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
}

.strain-card h4 {
  margin: 0 0 10px;
  color: var(--moss);
  font-size: 22px;
}

.strain-card p {
  margin: 0 0 16px;
  line-height: 1.56;
  color: var(--muted);
}

.strain-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: auto 0 0;
}

.strain-card dl div {
  padding: 10px;
  background: var(--cream);
}

.strain-card dt {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.strain-card dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.note {
  max-width: 980px;
  margin: 34px auto 0;
  padding: 20px 24px;
  background: rgba(255, 250, 242, .78);
  border: 1px solid var(--line);
  line-height: 1.55;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 38px auto 0;
}

.location-card {
  overflow: hidden;
}

.location-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.location-card > div {
  padding: 24px;
}

.location-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.location-card p {
  line-height: 1.56;
}

.status {
  display: inline-flex;
  padding: 7px 12px;
  margin: 0 0 14px;
  background: var(--lavender);
  color: #111;
  font-weight: 800;
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.split-section .section-heading {
  margin: 0;
}

.split-section .soft-card {
  padding: 38px;
}

.membership-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 42px;
  padding: 90px 6vw;
  background: var(--moss);
  color: #fff;
}

.member-form {
  color: var(--ink);
  padding: 30px;
}

.member-form h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 14px;
}

.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 22, 16, .22);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.check {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 14px;
  font-weight: 400;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.member-form .button {
  width: 100%;
  margin-top: 18px;
}

.notice {
  padding: 12px 14px;
  font-weight: 800;
}

.success {
  background: #dff1db;
  color: #183b18;
}

.error {
  background: #ffe0db;
  color: #6b1e16;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 44px 6vw;
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: start;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 58px;
  }

  .strain-group,
  .split-section,
  .membership-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  :root {
    --radius: 20px;
    --radius-lg: 28px;
  }

  .site-header {
    padding: 14px;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 430px;
  }

  .hero-image {
    height: 430px;
    min-height: 430px;
  }

  .hero-panel,
  .text-card,
  .method-grid,
  .split-section .soft-card,
  .member-form {
    padding: 24px;
  }

  .hero h1,
  .intro-band h1,
  .section-heading h2,
  .membership-copy h2 {
    font-size: 40px;
  }

  .hero p:not(.kicker),
  .intro-band p {
    font-size: 20px;
  }

  .section,
  .membership-section {
    padding: 58px 18px;
  }

  .strain-grid,
  .location-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
