/* Falkner — hotsite v1 · derives from doc/tokens.css (brand v1.0) */

@font-face {
  font-family: 'Inter';
  src: url('font/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --fk-black: #0a0a0b;
  --fk-red: #c8102e;
  --fk-red-hover: #9b0c23;
  --fk-bone: #f2f0ed;
  --fk-gray: #8a8781;
  --fk-line: #232326;
  --fk-font: Inter, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --fk-radius: 4px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--fk-black);
  color: var(--fk-bone);
  font-family: var(--fk-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* header */
header {
  border-bottom: 1px solid var(--fk-line);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.logo img {
  height: 22px;
  width: auto;
  display: block;
}

.lang {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fk-gray);
  text-decoration: none;
  transition: color 0.15s;
}

.lang:hover {
  color: var(--fk-bone);
}

/* sections — one idea per section, >=64px breathing room */
section {
  padding: 96px 0;
  border-bottom: 1px solid var(--fk-line);
}

.label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fk-gray);
  margin-bottom: 28px;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 72px);
  max-width: 15ch;
}

h1 .dot {
  color: var(--fk-red);
}

.sub {
  color: var(--fk-gray);
  max-width: 44ch;
  margin-top: 24px;
  font-size: 18px;
}

.cta {
  display: inline-block;
  margin-top: 40px;
  background: var(--fk-bone);
  color: var(--fk-black);
  border-radius: var(--fk-radius);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.cta:hover {
  opacity: 0.86;
}

/* item lists: grafite top border per row */
.rows {
  list-style: none;
}

.rows li {
  border-top: 1px solid var(--fk-line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
}

.rows li:last-child {
  border-bottom: 1px solid var(--fk-line);
}

.rows h2 {
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.15;
  font-size: 17px;
}

.rows h2 .sur {
  font-weight: 800;
}

.rows h2 .desc {
  font-weight: 400;
  color: var(--fk-gray);
  letter-spacing: 0.08em;
}

.rows p {
  color: var(--fk-gray);
}

/* footer */
footer {
  padding: 64px 0 80px;
}

.rule {
  width: 36px;
  height: 2px;
  background: var(--fk-red);
  margin-bottom: 24px;
}

footer p {
  color: var(--fk-gray);
  font-size: 14px;
}

footer a {
  color: var(--fk-bone);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 620px) {
  section {
    padding: 72px 0;
  }
  .rows li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
