/* PLUGGED LA CUTZ — reset + base */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--marble);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* while the entrance gate is up, the page behind must not scroll */
html.gated body { overflow: hidden; }
html.gate-skipped #gate { display: none; }

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

/* the hidden attribute always wins, even over display-setting classes */
[hidden] { display: none !important; }

h1, h2, h3 { margin: 0; font-family: var(--font-serif); font-weight: 600; line-height: 1.06; }
p { margin: 0; }

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--silver-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--smoke);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--marble);
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 600;
  transform: translateY(-300%);
}
.skip-link:focus { transform: none; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.85rem 2rem;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: var(--track-button);
  text-transform: uppercase;
  border: 1px solid var(--silver);
  color: var(--marble);
  background: transparent;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.btn:hover { background: var(--marble); border-color: var(--marble); color: var(--ink); }

.btn--solid { background: var(--marble); border-color: var(--marble); color: var(--ink); }
.btn--solid:hover { background: var(--silver-bright); border-color: var(--silver-bright); }

.btn--text {
  border: 0;
  min-height: 2.75rem;
  padding: 0.5rem 0.25rem;
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-decoration-color: rgba(185, 188, 193, 0.4);
}
.btn--text:hover { color: var(--marble); background: none; }
