:root {
  --ink: #202522;
  --green: #47745f;
  --green-dark: #315744;
  --cream: #f3efe5;
  --sand: #d9cbb7;
  --white: #fff;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -4rem;
  background: #fff;
  padding: 0.6rem 1rem;
  z-index: 20;
}
.skip:focus {
  top: 1rem;
}
.site-header {
  min-height: 106px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
  align-items: center;
  padding: 1rem 4vw;
  gap: 1.5rem;
  background: #fff;
  position: relative;
  z-index: 5;
}
.nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.45rem 1.35rem;
  align-items: center;
}
.nav a,
.legal a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 0.92rem;
}
.nav a {
  white-space: nowrap;
}
.nav a:hover,
.nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.brand {
  grid-column: 2;
  grid-row: 1;
}
.brand img {
  width: 150px;
  margin: auto;
}
.social {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  gap: 0.75rem;
}
.social a {
  width: 28px;
  height: 28px;
  border: 1px solid #333;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: bold;
}
.menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
}
.hero {
  min-height: 690px;
  background: var(--green-dark);
  display: grid;
  place-items: center;
  padding: 4rem 6vw;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: url("assets/meeting.jpg") center 46%/cover no-repeat;
  filter: blur(4px);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 52, 40, 0.84), rgba(25, 52, 40, 0.68));
  z-index: -1;
}
.hero-inner {
  max-width: 950px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
}
.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.92;
  margin: 0.2em 0;
}
.hero h2 {
  font: 400 clamp(1.2rem, 2.2vw, 1.8rem)/1.35 var(--serif);
  max-width: 830px;
  margin: 1.2rem auto;
}
.button {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  border: 1px solid currentColor;
  padding: 1rem 1.5rem;
  margin: 0.8rem 0.35rem;
  background: transparent;
  cursor: pointer;
}
.button.solid {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}
.button.green {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.intro {
  background: var(--green);
  color: #fff;
  padding: 7rem 6vw;
  text-align: center;
}
.intro h2 {
  font: 400 clamp(2.6rem, 5vw, 5rem)/1.05 var(--serif);
  max-width: 980px;
  margin: 0 auto 2rem;
}
.intro p {
  font: 400 clamp(1.15rem, 2vw, 1.55rem)/1.5 var(--serif);
  max-width: 760px;
  margin: 0 auto 2rem;
}
.app-section,
.split {
  max-width: var(--max);
  margin: auto;
  padding: 7rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
.app-section img {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.14);
}
.app-section h2,
.split h1,
.section-title {
  font: 400 clamp(2.6rem, 5vw, 4.6rem)/1.05 var(--serif);
  margin: 0 0 1.5rem;
}
.pricing {
  padding: 7rem 5vw;
  background: var(--cream);
}
.pricing .wrap {
  max-width: var(--max);
  margin: auto;
}
.section-title {
  text-align: center;
}
.kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #cfc9bd;
  margin-top: 3rem;
}
.price-card {
  background: var(--cream);
  padding: 2.5rem;
}
.price-card h3 {
  font: 400 2rem/1.15 var(--serif);
  margin: 0 0 1rem;
}
.price {
  font: 700 1.1rem var(--sans);
  color: var(--green-dark);
}
.contact-band {
  padding: 5rem 5vw;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
}
.contact-band h2 {
  font: 400 clamp(2rem, 4vw, 3.5rem)/1.25 var(--serif);
  max-width: 900px;
  margin: auto;
}
.newsletter {
  padding: 6rem 5vw;
  text-align: center;
}
.newsletter h2 {
  font: 400 2rem var(--serif);
}
.newsletter form {
  display: flex;
  max-width: 620px;
  margin: 2rem auto;
  gap: 0.6rem;
}
.newsletter input,
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #9e9e9e;
  background: #fff;
  font: inherit;
}
.tagline {
  padding: 7rem 5vw;
  text-align: center;
  background: var(--sand);
  font: italic 400 clamp(2.5rem, 6vw, 5.5rem)/1.1 var(--serif);
}
.page-hero {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(24, 45, 36, 0.5), rgba(24, 45, 36, 0.5)),
    url("assets/principles-hero.jpg") center/cover;
  padding: 4rem;
}
.content {
  max-width: 920px;
  margin: auto;
  padding: 6rem 5vw;
}
.content.wide {
  max-width: var(--max);
}
.content h1 {
  font: 400 clamp(3rem, 6vw, 5.5rem)/1 var(--serif);
  margin: 0 0 2rem;
}
.content h2 {
  font: 400 2.1rem/1.2 var(--serif);
  margin: 2.5rem 0 1rem;
}
.content h3 {
  font: 400 1.45rem/1.25 var(--serif);
  margin: 2rem 0 0.6rem;
}
.content p {
  margin: 0 0 1.25rem;
}
.about-image,
.contact-image {
  width: 100%;
  height: 470px;
  object-fit: cover;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.amenities {
  columns: 2;
  column-gap: 3rem;
  padding-left: 1.2rem;
}
.principle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 490px;
}
.principle:nth-child(odd) .principle-img {
  order: 2;
}
.principle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.principle-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 8vw;
}
.principle-copy h2 {
  font: 400 clamp(2.5rem, 5vw, 4rem) var(--serif);
  margin: 0 0 1rem;
}
.faq details {
  border-top: 1px solid #bbb;
  padding: 1.35rem 0;
}
.faq details:last-child {
  border-bottom: 1px solid #bbb;
}
.faq summary {
  font: 400 1.35rem var(--serif);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.faq summary:after {
  content: "+";
  font-family: var(--sans);
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  padding: 1.25rem 4rem 0 0;
}
.form-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 5vw;
  align-items: start;
}
.form-card {
  background: var(--cream);
  padding: 2.5rem;
}
.field {
  margin-bottom: 1.2rem;
}
.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.prose ul {
  padding-left: 1.4rem;
}
.site-footer {
  background: #1e2b25;
  color: #fff;
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 4rem;
}
.footer-logo {
  width: 170px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 1rem;
}
.footer-nav a,
.site-footer a {
  color: #fff;
}
.footer-nav {
  display: grid;
  gap: 0.45rem;
}
.legal {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}
.muted {
  opacity: 0.72;
}
.mobile-only {
  display: none;
}
.thank-you {
  min-height: calc(100vh - 106px);
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--cream);
}
.thank-you-inner {
  max-width: 760px;
}
.thank-you p {
  font: 400 clamp(1.25rem, 2.5vw, 1.75rem) / 1.55 var(--serif);
}
@media (max-width: 850px) {
  .site-header {
    min-height: 82px;
    grid-template-columns: 1fr auto 1fr;
    padding: 0.75rem 1.25rem;
  }
  .brand {
    grid-column: 2;
    grid-row: 1;
  }
  .brand img {
    width: 120px;
  }
  .menu {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #ddd;
  }
  .nav.open {
    display: flex;
  }
  .social {
    display: none;
  }
  .hero {
    min-height: 620px;
  }
  .app-section,
  .split,
  .form-layout,
  .principle {
    grid-template-columns: 1fr;
  }
  .principle:nth-child(odd) .principle-img {
    order: 0;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .amenities {
    columns: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .newsletter form {
    flex-direction: column;
  }
  .mobile-only {
    display: block;
  }
  .page-hero {
    min-height: 330px;
  }
  .content {
    padding-top: 4rem;
  }
}
