:root {
  --bg: #0d0d0b;
  --panel: rgba(17, 20, 23, 0.82);
  --panel-strong: rgba(12, 14, 17, 0.94);
  --border: rgba(194, 160, 101, 0.18);
  --text: #ede6d7;
  --muted: #b5ab98;
  --accent: #c59755;
  --accent-soft: #86603a;
  --button-gold: #ffb14d;
  --button-gold-strong: #e39a3c;
  --dust: #d6bf98;
  --max-width: 1180px;
  --header-height: 88px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #090909;
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--button-gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.24rem;
  text-shadow: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(255, 177, 77, 0.66);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb44f 0%, #eda843 100%);
  color: #140f09;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -12px 24px rgba(108, 72, 29, 0.16);
  text-shadow: none;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(120% 140% at 50% 115%, rgba(255, 236, 190, 0.24), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffba59 0%, #f1ad49 100%);
}

.button:focus-visible,
.site-nav a:focus-visible,
.site-footer__links a:focus-visible {
  outline: 2px solid rgba(219, 181, 119, 0.65);
  outline-offset: 3px;
}

.button--ghost {
  background: linear-gradient(180deg, rgba(38, 39, 42, 0.84), rgba(26, 27, 30, 0.9));
  color: var(--text);
  border-color: rgba(237, 230, 215, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 20px rgba(0, 0, 0, 0.16);
  backdrop-filter: none;
}

.button--ghost::before {
  background:
    radial-gradient(120% 140% at 50% 115%, rgba(237, 230, 215, 0.10), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(213, 180, 125, 0.48);
  background: linear-gradient(180deg, rgba(46, 47, 50, 0.9), rgba(31, 32, 35, 0.95));
}

.button--nav {
  min-height: 2.9rem;
  padding-inline: 1.2rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(7, 8, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition:
    background-color var(--transition),
    border-color var(--transition),
    backdrop-filter var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(7, 8, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: clamp(9.5rem, 14vw, 12.5rem);
  filter:
    brightness(0) saturate(0) invert(90%) sepia(16%) saturate(343%) hue-rotate(356deg) brightness(101%) contrast(94%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  position: relative;
  color: rgba(237, 230, 215, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(169, 120, 52, 0.12), transparent 33%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-screen__content {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 2rem;
  text-align: center;
  animation: introReveal 1.8s ease both;
}

.loading-screen__logo {
  width: min(72vw, 34rem);
  filter:
    brightness(0) saturate(0) invert(88%) sepia(13%) saturate(383%) hue-rotate(356deg) brightness(99%) contrast(92%);
  animation: introFlicker 3.4s ease-in-out infinite;
}

.loading-screen__tag {
  margin: 0;
  max-width: 32rem;
  color: rgba(237, 230, 215, 0.78);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.loading-screen__dust,
.hero__overlay,
.newsletter-overlay,
.about-media__shade {
  pointer-events: none;
}

.loading-screen__dust {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 239, 210, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 40%, rgba(255, 239, 210, 0.06) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 70%, rgba(255, 239, 210, 0.05) 0 1px, transparent 2px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  animation: drift 20s linear infinite;
}

.film-grain,
.global-vignette {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  isolation: isolate;
}

.hero__bg,
.newsletter-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__bg {
  background-image:
    linear-gradient(180deg, rgba(8, 9, 10, 0.12), rgba(8, 9, 10, 0.12)),
    url("assets/hero-bus-road.png");
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.10) 0%, rgba(5, 6, 8, 0.10) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(42rem, 100%);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(4.7rem, 12vw, 8.5rem);
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.hero__subtitle {
  margin: 1rem 0 1rem;
  max-width: 32rem;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: rgba(245, 238, 226, 0.98);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.78),
    0 10px 24px rgba(0, 0, 0, 0.42);
}

.hero__body,
.section-heading p,
.section-copy p,
.newsletter-shell p {
  color: rgba(237, 230, 215, 0.8);
}

.hero__body {
  max-width: 35rem;
  margin: 0;
  font-size: 1.02rem;
  color: rgba(245, 238, 226, 0.96);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.78),
    0 10px 24px rgba(0, 0, 0, 0.42);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__dust {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__dust span {
  position: absolute;
  bottom: -10%;
  width: 0.45rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 202, 159, 0.26), rgba(226, 202, 159, 0));
  filter: blur(1px);
  animation: floatDust linear infinite;
}

.hero__dust span:nth-child(1) {
  left: 8%;
  animation-duration: 18s;
}

.hero__dust span:nth-child(2) {
  left: 25%;
  width: 0.6rem;
  animation-duration: 22s;
  animation-delay: -4s;
}

.hero__dust span:nth-child(3) {
  left: 56%;
  animation-duration: 20s;
  animation-delay: -9s;
}

.hero__dust span:nth-child(4) {
  left: 78%;
  width: 0.7rem;
  animation-duration: 24s;
  animation-delay: -3s;
}

.hero__dust span:nth-child(5) {
  left: 90%;
  animation-duration: 19s;
  animation-delay: -13s;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 2;
  transform: translateX(-50%);
  width: 1.4rem;
  height: 2.6rem;
  border: 1px solid rgba(237, 230, 215, 0.28);
  border-radius: 999px;
}

.hero__scroll span {
  position: absolute;
  top: 0.45rem;
  left: 50%;
  width: 0.22rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(237, 230, 215, 0.58);
  transform: translateX(-50%);
  animation: scrollPrompt 2.2s ease infinite;
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section--about {
  background: #090909;
  padding-block: 7.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 3.75rem;
}

.section h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
  text-transform: uppercase;
}

.section-copy p+p,
.newsletter-shell p+p {
  margin-top: 1rem;
}

.about-media__frame {
  position: relative;
  display: block;
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  overflow: hidden;
  min-height: 0;
  background:
    radial-gradient(circle at center, rgba(197, 151, 85, 0.08), transparent 55%),
    #111;
  box-shadow: none;
}

.about-media__frame img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: initial;
}

.about-media__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.about-media__caption {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(237, 230, 215, 0.82);
  font-size: 0.92rem;
}

.section--features {
  background: #090909;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 21rem;
  padding: 1.1rem 1.1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(23, 24, 28, 0.88), rgba(11, 12, 14, 0.92));
  box-shadow: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(197, 151, 85, 0.08), transparent 35%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(197, 151, 85, 0.34);
  box-shadow: none;
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  opacity: 1;
}

.feature-card__media {
  position: relative;
  margin-bottom: 1.35rem;
  border-radius: 0.95rem;
  overflow: hidden;
  aspect-ratio: 1.15 / 0.9;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #131313;
}

.feature-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.04), rgba(8, 8, 9, 0.18));
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.feature-card:hover .feature-card__media img,
.feature-card:focus-within .feature-card__media img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.feature-card h3 {
  margin: 0 0 0.65rem;
  color: var(--button-gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}

.feature-card p:last-child {
  margin: 0;
  color: rgba(237, 230, 215, 0.77);
}

.section--newsletter {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #090909;
}

.newsletter-bg,
.newsletter-overlay {
  display: none;
}

.newsletter-shell {
  position: relative;
  overflow: hidden;
  z-index: 2;
  max-width: 48rem;
  padding: 3rem;
  border: 1px solid rgba(214, 191, 152, 0.16);
  border-radius: 1.5rem;
  background: rgba(9, 9, 9, 0.94);
  box-shadow: none;
  backdrop-filter: none;
}

.newsletter-form {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid rgba(237, 230, 215, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.newsletter-form input::placeholder {
  color: rgba(237, 230, 215, 0.46);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(197, 151, 85, 0.46);
  box-shadow: 0 0 0 4px rgba(197, 151, 85, 0.08);
}

.newsletter-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: inset 0 -10px 20px rgba(108, 72, 29, 0.12);
  background: var(--button-gold);
}

.newsletter-note {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: rgba(237, 230, 215, 0.72);
  font-size: 0.95rem;
}

.site-footer {
  position: relative;
  z-index: 5;
  padding: 2.5rem 0 2rem;
  background: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(237, 230, 215, 0.82);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.site-footer__brand img {
  width: clamp(10rem, 14vw, 12rem);
  margin-bottom: 0.75rem;
  filter:
    brightness(0) saturate(0) invert(90%) sepia(16%) saturate(343%) hue-rotate(356deg) brightness(101%) contrast(94%);
}

.site-footer__brand p,
.site-footer__meta {
  margin: 0;
  max-width: 26rem;
  color: rgba(237, 230, 215, 0.82);
  text-shadow: none;
}

.site-footer__right {
  display: grid;
  justify-items: end;
  gap: 0.9rem;
}

.site-footer__links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: transparent;
  color: rgba(237, 230, 215, 0.82);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(197, 151, 85, 0.34);
  background: rgba(197, 151, 85, 0.08);
  color: var(--text);
}

.site-footer__links svg {
  width: 1.2rem;
  height: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes introReveal {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introFlicker {

  0%,
  18%,
  22%,
  62%,
  100% {
    opacity: 1;
  }

  20% {
    opacity: 0.88;
  }

  64% {
    opacity: 0.93;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-20px, -32px, 0);
  }
}

@keyframes floatDust {
  0% {
    transform: translate3d(0, 0, 0) scale(0.85);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translate3d(30px, -120vh, 0) scale(1.2);
    opacity: 0;
  }
}

@keyframes scrollPrompt {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 0.9rem);
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {

  .about-grid,
  .features-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .features-grid {
    gap: 1rem;
  }

  .newsletter-shell {
    padding: 2rem;
  }

  .site-footer__right {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1rem;
    padding: 0.8rem 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.1rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 8rem);
  }

  .hero__content {
    width: min(calc(100% - 2rem), 22rem);
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 7ch;
    font-size: clamp(3.7rem, 14vw, 5rem);
  }

  .hero__subtitle,
  .hero__body {
    max-width: 22rem;
  }

  .hero__actions,
  .newsletter-form {
    flex-direction: column;
  }

  .hero__actions {
    width: min(100%, 18rem);
  }

  .hero__actions .button,
  .newsletter-form input,
  .newsletter-form .button {
    width: 100%;
  }

  .section {
    padding: 5.25rem 0;
  }

  .about-media__frame {
    min-height: 0;
  }
}