@font-face {
  font-family: Inter;
  src: url('./assets/inter-medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url('./assets/inter-semibold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Mondwest;
  src: url('./assets/mondwest.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: Amiri;
  src: url('./assets/amiri.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('./assets/bebas-neue.woff2') format('woff2');
  font-display: swap;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: #fff;
  background: linear-gradient(#71b9e6, #0066e6);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid #142a58; outline-offset: 5px; }
.navigation {
  position: absolute;
  z-index: 1;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 382px;
  max-width: calc(100% - 8px);
  height: 72px;
  padding: 12px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 -3px 0 #d9d9d9;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font: 400 32px/1.2 'Bebas Neue', sans-serif;
  letter-spacing: -.03em;
}
.brand img { display: block; object-fit: contain; }
.book-call {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #2584ef;
  box-shadow: inset 0 3px 0 #ffffff66, inset 0 -3px 0 #0000001f, 0 12px 20px #00000026;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.03em;
  transition: background .15s, transform .15s;
}
.book-call:hover { background: #1476e5; transform: translateY(-1px); }
.book-call:active { transform: translateY(1px); }
main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 20px;
}
.hero { width: 640px; max-width: 100%; text-align: center; }
h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 32px;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.digital { font-family: Mondwest, monospace; }
.experiences { font-family: Amiri, Georgia, serif; }
.copy { font-size: 18px; font-weight: 500; line-height: 1.5; letter-spacing: -.03em; opacity: .8; }
p { margin: 0; }
.contact { margin-top: 12px; }
.contact a { text-underline-offset: 2px; }
.contact a:hover { text-decoration: none; }
@media (max-width: 809px) {
  .navigation { height: 64px; padding: 10px 44px; }
  h1 { font-size: clamp(38px, 12.3vw, 48px); }
}
@media (max-width: 374px) {
  .navigation { padding-inline: 20px; }
  h1 { gap: 8px; }
  .copy { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .book-call { transition: none; }
}
