@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/manrope-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/manrope-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/manrope-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../../assets/fonts/manrope-semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #020202;
  --background: #020302;
  --near-black: #020202;
  --surface: #020202;
  --surface-raised: #020202;
  --white: #f9f9f8;
  --text: #f4f3ef;
  --muted: #999a9d;
  --quiet: #65666a;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.065);
  --gold: #fcc751;
  --gold-light: #ffd469;
  --frame-space: clamp(14px, 1.45vw, 28px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --navbar-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  min-width: 260px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Manrope", Arial, sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--black);
  background: var(--gold);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2 {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--black);
  background: var(--gold);
  font-size: 13px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.brand-signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-signature img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #9a9b9e;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.availability i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(252, 199, 81, 0.08);
}

.section-index {
  margin: 0;
  color: #7a7b7e;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
