@font-face {
  font-family: "Roam Lora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/home/media/roam/lora-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Roam Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/home/media/roam/inter-latin.woff2") format("woff2");
}

.roam-surface {
  color-scheme: light;
  --roam-paper: #fff9f2;
  --roam-ink: #24211f;
  --roam-orange: #ec624b;
  --roam-muted: #6e625b;
  --roam-line: #e7dcd2;
  color: var(--roam-ink);
  font-family: "Roam Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.roam-surface :focus-visible {
  outline: 2px solid var(--roam-ink);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px white;
}

.roam-surface ::selection {
  color: var(--roam-ink);
  background: #f3e9de;
}

.roam-wordmark {
  display: block;
  width: 168px;
  height: 56px;
  object-fit: contain;
}

.roam-kicker {
  margin: 0;
  color: var(--roam-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.roam-display {
  font-family: "Roam Lora", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.roam-intro {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.roam-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.roam-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--roam-orange);
  color: var(--roam-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.roam-button:hover {
  background: #f0735e;
}

.roam-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.roam-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 12px;
  min-width: 0;
}

.roam-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  object-fit: cover;
  background: #f3e9de;
}

.roam-gallery .roam-lake {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
  object-position: 50% 58%;
}

@media (width >= 768px) {
  .roam-gallery {
    gap: 16px;
  }

  .roam-gallery img {
    border-radius: 20px;
  }
}

@media (width <= 540px) {
  .roam-wordmark {
    width: 144px;
    height: 48px;
  }
}
