/* Pendleton Labs placeholder site */

:root {
  --paper: #f5f0e7;
  --ink: #1f251f;
  --muted: #786f61;
  --olive: #696b48;
  --rule: rgba(92, 83, 70, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    url("assets/mountain-background.png")
    center bottom / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(250, 247, 240, 0.82) 0%,
      rgba(250, 247, 240, 0.64) 34%,
      rgba(250, 247, 240, 0.22) 72%,
      rgba(250, 247, 240, 0.02) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 88vw);
  padding: 4.5rem 1rem 8rem;
  text-align: center;
}

.brand-mark {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

h1 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(3.5rem, 7.6vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.eyebrow {
  width: min(720px, 100%);
  margin: 2.35rem auto 2rem;
  display: grid;
  grid-template-columns: minmax(55px, 1fr) auto minmax(55px, 1fr);
  align-items: center;
  gap: 1.4rem;
}

.rule,
.ornament span {
  height: 1px;
  background: var(--rule);
}

.eyebrow-text {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.27em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.ornament {
  margin: 2.2rem auto 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  color: var(--olive);
}

.ornament span {
  width: 42px;
}

.ornament b {
  font-size: 1rem;
  font-weight: 400;
}

.closing {
  margin: 0;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.site-footer {
  padding: 2.6rem 1.25rem 2.2rem;
  text-align: center;
  background: rgba(248, 245, 238, 0.98);
  border-top: 1px solid rgba(90, 83, 70, 0.08);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.45rem;
  margin-bottom: 1.7rem;
}

.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.footer-nav > span {
  width: 1px;
  height: 18px;
  background: var(--rule);
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 680px) {
  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding: 3.25rem 0.75rem 6.5rem;
  }

  .brand-mark {
    width: 74px;
    height: 74px;
    margin-bottom: 0.75rem;
  }

  .eyebrow {
    gap: 0.8rem;
    margin-top: 1.9rem;
  }

  .eyebrow-text {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .footer-nav > span {
    display: none;
  }

  .footer-nav {
    gap: 1rem 1.25rem;
  }
}
