:root {
  --bg: #1c1c1c;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.85);
  --hairline: rgba(255, 255, 255, 0.08);
  --field-border: rgba(255, 255, 255, 0.18);
  --field-bg: rgba(255, 255, 255, 0.04);
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--hairline);
}

.site-logo {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
}

.site-logo:hover,
.site-logo:focus-visible {
  opacity: 0.85;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--fg);
}

#main {
  flex: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 8rem);
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.hero__name {
  margin: 0;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.hero__tagline {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

.hero__actions {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--ghost {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.page {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.page--wide {
  max-width: 58rem;
}

.page__header h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 200;
  letter-spacing: 0.04em;
}

.page__body {
  color: var(--muted);
  font-size: 1.05rem;
}

.prose a {
  color: var(--fg);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.prose a:hover,
.prose a:focus-visible {
  opacity: 0.9;
}

.prose p {
  margin: 0 0 1.25rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.featured-videos {
  margin: 2.75rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}

.featured-videos__heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  color: var(--fg);
}

.featured-videos__lede {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.featured-videos__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1.25rem;
}

.featured-videos__grid > li {
  margin: 0;
}

.featured-videos__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 45%
  );
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-videos__card:hover,
.featured-videos__card:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.featured-videos__card:focus-visible {
  outline: 2px solid var(--border);
  outline-offset: 2px;
}

.prose .featured-videos__card {
  color: inherit;
  text-decoration: none;
}

.prose .featured-videos__card:hover,
.prose .featured-videos__card:focus-visible {
  opacity: 1;
}

.featured-videos__thumb-wrap {
  display: block;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  overflow: hidden;
}

.featured-videos__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-videos__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
}

.featured-videos__title {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
}

.featured-videos__views {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form {
  position: relative;
  margin-top: 2.5rem;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.035) 0%,
    transparent 55%
  );
}

.contact-form p {
  margin: 0 0 1.5rem;
}

.contact-form p:last-of-type {
  margin-bottom: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--fg);
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 9.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px var(--border);
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--fg);
  -webkit-box-shadow: 0 0 0 1000px #242424 inset;
  box-shadow: 0 0 0 1000px #242424 inset;
  border-color: var(--field-border);
  transition: background-color 99999s ease-out;
}

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

.contact-form__submit {
  margin-top: 0.25rem;
  margin-bottom: 0;
  padding-top: 0.5rem;
}

.contact-form__submit .btn {
  display: flex;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
}

.site-footer {
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--hairline);
}

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
