.landing-page {
  min-height: 100vh;
  margin: 0;
  color: #241f1a;
  background: #f4f0e6;
  font-family: "Helvetica Neue", Arial, sans-serif; }
  .landing-page *, .landing-page *::before, .landing-page *::after {
    box-sizing: border-box; }
  .landing-page a {
    color: inherit;
    text-decoration: none; }

.landing-shell {
  width: calc(100% - 40px);
  max-width: 820px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column; }

.landing-header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d2c4; }

.landing-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: .04em; }

.landing-nav {
  display: flex;
  gap: 24px;
  color: #67615a;
  font-size: .72rem; }
  .landing-nav a {
    transition: color .15s ease; }
    .landing-nav a:hover, .landing-nav a:focus {
      color: #241f1a; }

.landing-hero {
  max-width: 660px;
  margin: 0 auto;
  padding: 58px 0 42px;
  text-align: center; }

.landing-crest {
  display: block;
  width: 88px;
  height: auto;
  margin: 0 auto 18px; }

.landing-eyebrow {
  margin: 0 0 20px;
  color: #67615a;
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase; }

.landing-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em; }

.landing-intro {
  max-width: 550px;
  margin: 26px auto 0;
  color: #67615a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .96rem;
  line-height: 1.65; }

.landing-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; }
  .landing-actions a {
    min-width: 120px;
    padding: 11px 20px;
    border: 1px solid #241f1a;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    transition: background .15s ease, color .15s ease; }
  .landing-actions .button-primary {
    color: #faf8f2;
    background: #241f1a; }
    .landing-actions .button-primary:hover, .landing-actions .button-primary:focus {
      background: #40372f; }
  .landing-actions .button-secondary:hover, .landing-actions .button-secondary:focus {
    color: #faf8f2;
    background: #241f1a; }

.landing-page input.button-primary {
  appearance: none;
  -webkit-appearance: none;
  min-width: 120px;
  height: auto;
  padding: 11px 20px;
  color: #faf8f2;
  background: #241f1a;
  border: 1px solid #241f1a;
  border-radius: 999px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  box-shadow: none;
  cursor: pointer; }
  .landing-page input.button-primary:hover, .landing-page input.button-primary:focus {
    color: #faf8f2;
    background: #40372f;
    border-color: #40372f; }

.landing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 40px; }

.landing-card {
  min-height: 154px;
  padding: 22px 19px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid #d9d2c4;
  border-radius: 3px; }
  .landing-card h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    font-weight: 400; }
  .landing-card p {
    margin: 0 0 16px;
    color: #67615a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: .8rem;
    line-height: 1.55; }
  .landing-card a {
    margin-top: auto;
    color: #8b3f28;
    font-size: .7rem;
    font-weight: 700; }
    .landing-card a:hover, .landing-card a:focus {
      text-decoration: underline; }

.landing-footer {
  min-height: 72px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #67615a;
  border-top: 1px solid #d9d2c4;
  font-size: .65rem; }
  .landing-footer a:hover, .landing-footer a:focus {
    color: #241f1a; }

@media (max-width: 680px) {
  .landing-shell {
    width: calc(100% - 28px);
    max-width: 520px; }
  .landing-header {
    padding: 18px 0;
    align-items: flex-start; }
  .landing-nav {
    max-width: 210px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 16px; }
  .landing-hero {
    padding: 44px 0 34px; }
  .landing-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem); }
  .landing-cards {
    grid-template-columns: 1fr; }
  .landing-card {
    min-height: 138px; } }

@media (max-width: 420px) {
  .landing-header {
    display: block; }
  .landing-nav {
    max-width: none;
    margin-top: 14px;
    justify-content: flex-start; }
  .landing-actions {
    align-items: stretch;
    flex-direction: column; }
  .landing-footer {
    gap: 12px; } }
