@font-face {
  font-family: Jakarta;
  src: url("/assets/jakarta.ttf") format("truetype");
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f6f1ea;
  --ink: #262b27;
  --green: #315b52;
  --line: #dcded5;
  --muted: #697068;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Jakarta, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #b96b48;
  outline-offset: 5px;
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
button {
  border: 0;
  background: none;
}
button:disabled {
  cursor: wait;
}
.header {
  max-width: 1600px;
  margin: auto;
  height: 104px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 50px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1.8px;
}
.brand img {
  width: 30px;
}
.brand .brand-logo {
  width: 136px;
  max-width: 34vw;
  height: auto;
}
.header nav {
  margin-left: auto;
  display: flex;
  gap: 32px;
  font-size: 13px;
}
.header nav a {
  padding: 14px 0;
}
.header nav a:hover {
  color: var(--green);
}
#language {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 10px 13px;
  border-radius: 4px;
}
.hero {
  max-width: 1600px;
  margin: 18px auto 100px;
  display: grid;
  grid-template-columns: 0.83fr 1.35fr;
  gap: 5%;
  padding: 0 5%;
  align-items: center;
}
.intro {
  padding-bottom: 42px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.6;
}
.intro .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
h1 {
  font-size: clamp(48px, 5.1vw, 82px);
  line-height: 1.06;
  letter-spacing: -4px;
  font-weight: 500;
  max-width: 540px;
}
.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 380px;
  margin: 28px 0 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 19px 23px;
  background: var(--green);
  color: white;
  border-radius: 5px;
  font-size: 13px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #24483f;
  transform: translateY(-2px);
}
.availability {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
}
.availability svg {
  width: 14px;
  height: 17px;
}
