:root {
  --ink: #20231f;
  --muted-ink: #666961;
  --paper: #f1f0eb;
  --surface: #faf9f5;
  --line: #d8d7d0;
  --sage: #697369;
  --sage-pale: #dfe3dc;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgb(255 255 255 / 70%), transparent 29rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.parking-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1440px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 32px clamp(24px, 5vw, 76px) 26px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 720;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--surface);
  background: var(--ink);
  border-radius: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1;
}

.launch-status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border: 3px solid var(--sage-pale);
  border-radius: 50%;
  box-sizing: content-box;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: clamp(72px, 10vh, 130px) 0;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.introduction {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted-ink);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.job-preview {
  position: relative;
  min-height: 430px;
  padding: 32px;
  overflow: hidden;
  background: #e5e5df;
  border: 1px solid rgb(32 35 31 / 8%);
  border-radius: 28px;
}

.job-preview::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(32 35 31 / 13%) 0.8px, transparent 0.8px);
  background-size: 17px 17px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.preview-label {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
  color: var(--muted-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.job-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
  min-height: 142px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgb(32 35 31 / 9%);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgb(32 35 31 / 9%);
}

.job-card-primary {
  z-index: 2;
  transform: rotate(-1.8deg);
}

.job-card-secondary {
  z-index: 1;
  margin: -4px -50px 0 58px;
  opacity: 0.76;
  transform: rotate(3.2deg);
}

.company-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--surface);
  background: var(--sage);
  border-radius: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.company-mark-light {
  color: var(--ink);
  background: var(--sage-pale);
}

.job-card-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.skeleton-line,
.job-meta span {
  display: block;
  height: 7px;
  background: #d5d5cf;
  border-radius: 99px;
}

.skeleton-line-short {
  width: 38%;
}

.skeleton-line-mid {
  width: 52%;
}

.skeleton-line-long {
  width: 73%;
  height: 11px;
  background: #b7b9b2;
}

.job-meta {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.job-meta span {
  width: 58px;
  height: 20px;
  background: #e7e6e0;
  border: 1px solid #dad9d3;
}

.arrow-mark {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.site-footer {
  padding-top: 22px;
  color: var(--muted-ink);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .parking-page {
    padding-top: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 74px 0 64px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .job-preview {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  .parking-page {
    padding: 20px 18px;
  }

  .wordmark-mark {
    width: 31px;
    height: 31px;
    border-radius: 9px;
  }

  .launch-status {
    gap: 6px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .status-dot {
    width: 6px;
    height: 6px;
    border-width: 2px;
  }

  .hero {
    gap: 44px;
    padding: 62px 0 54px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5.1rem);
    line-height: 0.91;
  }

  .introduction {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .job-preview {
    min-height: 336px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .preview-label {
    margin-bottom: 34px;
  }

  .job-card {
    gap: 13px;
    min-height: 122px;
    padding: 17px;
    border-radius: 15px;
  }

  .job-card-secondary {
    margin-left: 30px;
  }

  .company-mark {
    width: 39px;
    height: 39px;
    border-radius: 11px;
  }

  .job-meta {
    margin-top: 10px;
  }

  .job-meta span {
    width: 43px;
    height: 17px;
  }

  .site-footer {
    align-items: flex-start;
    gap: 10px;
    font-size: 0.69rem;
    line-height: 1.4;
  }

  .site-footer p:first-child {
    max-width: 210px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: status-breathe 2.8s ease-in-out infinite;
  }

  @keyframes status-breathe {
    50% {
      box-shadow: 0 0 0 5px rgb(105 115 105 / 10%);
    }
  }
}
