@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/hanken-grotesk-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/saira-condensed-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/saira-condensed-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/saira-condensed-700-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/saira-condensed-800-latin.woff2") format("woff2");
}

:root {
  --rk-green: #1f8f2e;
  --rk-green-bright: #5cc23a;
  --rk-dark: #0d0f0c;
  --rk-dark-soft: #16180f;
  --rk-text: #16180f;
  --rk-muted: #54584d;
  --rk-muted-light: #9a9d92;
  --rk-white: #ffffff;
  --rk-light: #f4f3ee;
  --rk-line: #e7e6e0;
  --rk-star: #f4b223;
  --rk-font-body: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --rk-font-display: "Saira Condensed", "Arial Narrow", system-ui, sans-serif;
  --rk-radius-sm: 13px;
  --rk-radius-md: 18px;
  --rk-radius-lg: 22px;
  --rk-radius-pill: 999px;
  --rk-shadow-card: 0 18px 44px rgba(13, 15, 12, .08);
  --rk-shadow-strong: 0 22px 56px rgba(13, 15, 12, .16);
  --rk-container: 1240px;
  --rk-page-container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--rk-light);
  color: var(--rk-text);
  font-family: var(--rk-font-body);
}

a {
  color: inherit;
}

img,
svg,
iframe {
  display: block;
}

::selection {
  background: var(--rk-green);
  color: var(--rk-white);
}

.page {
  min-height: 100vh;
  background: var(--rk-light);
}

.rk-container {
  width: min(100% - 56px, var(--rk-container));
  margin-inline: auto;
}

.rk-page-container {
  width: min(100% - 56px, var(--rk-page-container));
  margin-inline: auto;
}

.rk-section {
  padding: 96px 0;
  scroll-margin-top: 96px;
}

.rk-section-dark {
  background: var(--rk-dark-soft);
  color: var(--rk-white);
}

.rk-section-light {
  background: var(--rk-light);
}

.rk-eyebrow {
  margin-bottom: 14px;
  color: var(--rk-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rk-section-dark .rk-eyebrow {
  color: var(--rk-green-bright);
}

.rk-display {
  margin: 0;
  font-family: var(--rk-font-display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: .3px;
  line-height: 1;
  text-transform: uppercase;
}

.rk-section-title {
  font-size: clamp(34px, 5vw, 52px);
}

.rk-muted {
  color: var(--rk-muted);
}

.rk-dark-muted {
  color: rgba(255, 255, 255, .66);
}

.rk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--rk-radius-pill);
  font: 800 16px/1 var(--rk-font-body);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.22, .61, .36, 1), background .2s, box-shadow .2s, border-color .2s;
}

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

.rk-button-primary {
  background: var(--rk-green);
  color: var(--rk-white);
  box-shadow: 0 10px 30px rgba(31, 143, 46, .35);
}

.rk-button-primary:hover {
  background: #46bd34;
}

.rk-button-ghost-dark {
  border: 1.5px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: var(--rk-white);
}

.rk-button-ghost-light {
  border: 1.5px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
  color: var(--rk-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.rk-button-ghost-light:hover {
  border-color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .14);
}

.rk-card {
  border: 1px solid var(--rk-line);
  border-radius: var(--rk-radius-md);
  background: var(--rk-white);
  box-shadow: 0 1px 2px rgba(20, 22, 12, .04);
}

.rk-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--rk-star);
  letter-spacing: 1px;
}

.rk-map {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: #1a1c16;
}

.rk-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(.16) contrast(1.04);
}

.rk-reveal {
  --rk-reveal-dur: .7s;
  --rk-reveal-y: 24px;
  opacity: 0;
}

.rk-reveal-soft {
  --rk-reveal-y: 16px;
}

.rk-reveal-slow {
  --rk-reveal-dur: .85s;
}

.rk-reveal.is-visible {
  opacity: 1;
  animation: rkRevealIn var(--rk-reveal-dur) cubic-bezier(.22, .61, .36, 1) both;
  animation-delay: var(--rk-reveal-delay, 0ms);
}

@keyframes rkRevealIn {
  from {
    opacity: 0;
    transform: translateY(var(--rk-reveal-y, 24px));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rkHeroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .rk-container,
  .rk-page-container {
    width: min(100% - 36px, var(--rk-container));
  }

  .rk-section {
    padding: 76px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .rk-reveal {
    opacity: 1;
    transform: none;
  }

  .rk-reveal.is-visible {
    animation: none;
  }
}
