/* =========================
   PECULIAR MEDIA CO.
   ========================= */

:root {
  --black: #0d0d0d;
  --dark: #151515;
  --card: #191919;
  --white: #f2efe6;
  --muted: #aaa69c;
  --line: #383838;
  --accent: #d4743b;
  --max-width: 1180px;
}


/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}


/* GLOBAL */

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 35px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 13, 13, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  gap: 26px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

nav a:hover {
  color: var(--white);
}


/* HERO */

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero-copy {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-buttons {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


/* BUTTONS */

.button {
  display: inline-block;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--white);
}

.button.primary {
  background: var(--white);
  color: var(--black);
}

.button.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary:hover {
  background: var(--white);
  color: var(--black);
}


/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  text-decoration: none;
}

.feature-card p {
  color: var(--muted);
}

.feature-card strong {
  margin-top: auto;
}

a.feature-card {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

a.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.card-number {
  margin-bottom: 45px;
  color: var(--accent);
  font-family: monospace;
}


/* FIELD GUIDE CALLOUT */

.field-guide-callout {
  background: var(--white);
  color: var(--black);
}

.callout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.callout-layout .eyebrow {
  color: #9b4d22;
}

.callout-layout p {
  max-width: 540px;
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
}


/* CONTACT */

.contact {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.contact > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-links {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.contact-links a {
  font-weight: 700;
}


/* FOOTER */

footer {
  padding: 35px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


/* FIELD GUIDE PAGE */

.page-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--line);
}

.page-intro {
  max-width: 750px;
  color: var(--muted);
  font-size: 1.2rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
}

.resource-card h3 {
  margin-bottom: 10px;
}

.resource-card p {
  color: var(--muted);
}

.resource-type {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.resource-card.coming-soon {
  opacity: 0.65;
}


/* MOBILE */

@media (max-width: 800px) {

  .section {
    padding: 70px 0;
  }

  .nav {
    padding: 17px 0;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .card-grid,
  .resource-grid,
  .callout-layout {
    grid-template-columns: 1fr;
  }

  .callout-layout {
    gap: 25px;
  }

  .footer-inner {
    flex-direction: column;
  }

}
