:root {
  --bg: #050706;
  --fg: #f7f7f2;
  --card: #0d100d;
  --line: #2a2f25;
  --ink: #050706;
  --paper: #f7f7f2;
  --accent: #f5b80f;
  --accent-bright: #ffc51b;
  --accent-soft: rgba(245, 184, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 16%, rgba(245, 184, 15, 0.055), transparent 26rem),
    radial-gradient(circle at 88% 58%, rgba(245, 184, 15, 0.035), transparent 30rem),
    linear-gradient(180deg, #070a08 0%, var(--bg) 70%);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.16;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(104deg, transparent 0 11px, rgba(255, 255, 255, 0.018) 12px 13px),
    repeating-linear-gradient(2deg, transparent 0 16px, rgba(255, 255, 255, 0.014) 17px 18px);
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

.site-header {
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
  padding: 24px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
}

.brand:hover {
  color: var(--paper);
  text-decoration: none;
}

.brand__bolt {
  width: 24px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-block;
  background: var(--accent);
  clip-path: polygon(58% 0, 18% 47%, 47% 47%, 31% 100%, 83% 39%, 53% 39%);
  filter: drop-shadow(0 0 12px rgba(245, 184, 15, 0.22));
  transform: rotate(4deg);
}

.brand__word {
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.07em;
  line-height: 1;
}

.brand__word span {
  letter-spacing: -0.055em;
}

.site-header__context {
  color: rgba(247, 247, 242, 0.64);
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: right;
}

.site-header__context:empty {
  display: none;
}

main {
  min-height: 60vh;
}

a {
  color: var(--accent-bright);
}

a:hover {
  color: #ffda68;
}

.box,
.profile-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--card);
  border-color: var(--line);
  border-radius: 6px;
  box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.2);
}

.item {
  border-color: var(--line);
  border-radius: 3px;
  box-shadow: 7px 8px 0 rgba(0, 0, 0, 0.32);
}

input,
textarea,
select,
button {
  font-family: inherit;
}

input,
textarea,
select {
  border-color: var(--line);
  background: #090b09;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 184, 15, 0.2);
}

.btn {
  width: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  text-decoration: none;
  transform: translate(-2px, -2px);
}

.btn.primary,
.btn.accent {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 5px 5px 0 rgba(245, 184, 15, 0.22);
}

.btn.primary:hover,
.btn.accent:hover {
  color: var(--ink);
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  filter: none;
  box-shadow: 7px 7px 0 rgba(245, 184, 15, 0.28);
}

.btn.ghost {
  color: var(--paper);
  background: transparent;
  border-color: rgba(245, 184, 15, 0.7);
}

.btn.ghost:hover {
  color: var(--ink);
  background: var(--accent);
}

.top-banner {
  background: rgba(5, 7, 6, 0.95) !important;
  border-color: var(--line) !important;
}

.top-banner__instagram,
.request-modal__eyebrow,
.tip-modal__eyebrow,
.queue-tip-modal__eyebrow,
.queue-offer__eyebrow {
  color: var(--accent-bright) !important;
}

.status-pill {
  background: var(--accent-soft);
}

.site-footer {
  width: min(100% - 36px, 1240px);
  margin: 44px auto 0;
  padding: 28px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: rgba(247, 247, 242, 0.5);
  font-family: "Oswald", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  opacity: 1;
}

.brand--footer {
  gap: 6px;
}

.brand--footer .brand__bolt {
  width: 15px;
  height: 25px;
}

.brand--footer .brand__word {
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 28px, 1240px);
    padding-top: 18px;
  }

  .site-header__context {
    max-width: 48%;
    font-size: 0.66rem;
  }

  .brand__bolt {
    width: 19px;
    height: 32px;
  }

  .site-footer {
    width: min(100% - 28px, 1240px);
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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