:root {
  --bg: #ffffff;
  --surface: #f4f5f7;
  --ink: #111111;
  --ink-2: #1b2431;
  --muted: #6b7280;
  --line: #e6e8ec;
  --red: #cda250;
  --blue: #111111;
  --brand-blue: #cda250;
  --radius: 22px;
  --radius-sm: 14px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
a, button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) {
  html {
    scroll-behavior: smooth;
  }
}
@media (max-width: 767px) {
  a, button {
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  .active\:scale-95:active {
    transform: none !important;
  }
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", system-ui, sans-serif;
  overflow-x: hidden;
  margin: 0;
}
.font-display {
  font-family: "Cinzel", serif;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pole-stripe {
  background: repeating-linear-gradient(
    -60deg,
    var(--red) 0 16px,
    #ffffff 16px 24px,
    var(--blue) 24px 40px,
    #ffffff 40px 48px
  );
  border-radius: 3px;
}

.nav-a {
  position: relative;
  transition: color 0.25s ease;
}
.nav-a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}
@media (hover: hover) {
  .nav-a:hover::after {
    width: 100%;
  }
}

.sec-label {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 20px;
  color: #8a6a24;
  letter-spacing: 0.05em;
}

::selection {
  background: var(--red);
  color: #fff;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
}
.logo-lion {
  flex: none;
}
.logo-word {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.92;
}
.logo-tag {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  color: var(--brand-blue);
  line-height: 1;
}

.about-images {
  display: grid;
  gap: 0;
  align-items: stretch;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .about-images {
    grid-template-columns: 1fr 12px 1fr 12px 1fr;
  }
}
@media (max-width: 639px) {
  .about-images {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-images img {
  aspect-ratio: 4/3;
}

html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-scroll-up {
  animation: scrollUp 32s linear infinite;
}

.animate-scroll-down {
  animation: scrollDown 32s linear infinite;
}

.hover-pause:hover .animate-scroll-up,
.hover-pause:hover .animate-scroll-down {
  animation-play-state: paused;
}

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