/* Skill Issue India — design draft
   Direction: workshop editorial / instrument cluster
   Signature: dashed highway centerline + rider-notes stamp panels
*/

:root {
  --asphalt: #1c1f24;
  --asphalt-mid: #2a2f38;
  --paper: #eef0f2;
  --ink: #12141a;
  --steel: #6b7280;
  --mute: #9aa1ac;
  --signal: #dc1f2e;
  --signal-deep: #a81622;
  --lane: #e8b923;
  --white: #ffffff;
  --rule: rgba(18, 20, 26, 0.12);
  --rule-light: rgba(255, 255, 255, 0.14);

  --font-display: "Chakra Petch", system-ui, sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --measure: 42rem;
  --page: min(1120px, calc(100% - 2.5rem));
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--signal);
}

:focus-visible {
  outline: 2px solid var(--lane);
  outline-offset: 3px;
}

/* —— Centerline signature —— */
.centerline {
  height: 0;
  border: 0;
  border-top: 3px dashed var(--lane);
  margin: 0;
  opacity: 0.85;
}

.centerline--dark {
  border-top-color: var(--lane);
  opacity: 0.7;
}

.centerline--ink {
  border-top-color: rgba(18, 20, 26, 0.22);
  border-top-width: 2px;
  opacity: 1;
}

/* —— Site chrome —— */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  margin: 0 auto;
  padding: 1.25rem 0;
  color: var(--white);
}

.site-header--solid {
  position: sticky;
  top: 0;
  background: rgba(238, 240, 242, 0.92);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  width: 100%;
  padding-inline: max(1.25rem, calc((100% - 1120px) / 2 + 1.25rem));
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand img {
  height: 3.5rem;
  width: auto;
  max-width: min(22rem, 55vw);
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.site-header--solid .brand img {
  height: 3.15rem;
  filter: none;
}

.nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  opacity: 0.85;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
  color: var(--lane);
}

.site-header--solid .nav a:hover,
.site-header--solid .nav a[aria-current="page"] {
  color: var(--signal);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--asphalt);
  /* Lift the copy out of the very bottom edge */
  padding-bottom: clamp(2rem, 8vh, 4rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 20, 26, 0.35) 0%, rgba(18, 20, 26, 0.15) 35%, rgba(18, 20, 26, 0.82) 100%),
    linear-gradient(90deg, rgba(18, 20, 26, 0.72) 0%, rgba(18, 20, 26, 0.2) 55%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto 0;
  /* Sit in the lower third, not glued to the bottom */
  padding: 0 0 clamp(5rem, 16vh, 9rem);
  transform: translateY(-6vh);
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
  animation: riseIn 0.8s ease both;
}

.hero__line {
  width: min(18rem, 55%);
  margin: 0 0 1.5rem;
  animation: riseIn 0.8s ease 0.1s both;
}

.hero__thesis {
  max-width: 28rem;
  margin: 0 0 2rem;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  animation: riseIn 0.8s ease 0.18s both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--lane);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease;
  animation: riseIn 0.8s ease 0.28s both;
}

.hero__cta:hover {
  color: var(--ink);
  background: #f3c93a;
  transform: translateY(-1px);
}

.hero__cta span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.75;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections —— */
.section {
  width: var(--page);
  margin: 0 auto;
  padding: 4rem 0;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section__label {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.section__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.section__link:hover {
  color: var(--ink);
  background: var(--lane);
  border-color: var(--lane);
}

/* Topic buttons */
.topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.topic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.15rem 1.3rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  min-height: 6.25rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.topic:hover {
  color: var(--ink);
  background: var(--lane);
  border-color: var(--lane);
  transform: translateY(-2px);
}

.topic:hover .topic__go {
  transform: translateX(3px);
}

.topic__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topic__count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--steel);
}

.topic:hover .topic__count {
  color: var(--ink);
}

.topic__go {
  margin-top: auto;
  align-self: flex-end;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* Post list — rows, not cards */
.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-row {
  display: grid;
  grid-template-columns: 9.5rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 2px dashed rgba(18, 20, 26, 0.14);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.post-row:hover {
  color: inherit;
  background: rgba(255, 255, 255, 0.45);
}

.post-row__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--asphalt-mid);
  border-radius: var(--radius);
}

.post-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-row:hover .post-row__media img {
  transform: scale(1.04);
}

.post-row__meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-row__date {
  letter-spacing: 0.04em;
}

/* Yellow lane tags — category / kind chips */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--lane);
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius);
  line-height: 1.2;
}

a.tag:hover {
  color: var(--ink);
  background: #f3c93a;
}

.tag--kind {
  background: var(--ink);
  color: var(--lane);
}

a.tag--kind:hover,
.tag--kind:hover {
  color: var(--lane);
  background: var(--asphalt-mid);
}

.post-row__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 0.4rem;
}

.post-row__excerpt {
  margin: 0;
  color: var(--steel);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 36rem;
}

.post-row__arrow {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--mute);
  transition: color 0.2s ease, transform 0.2s ease;
}

.post-row:hover .post-row__arrow {
  color: var(--signal);
  transform: translateX(3px);
}

/* Mission strip */
.mission {
  background: var(--asphalt);
  color: rgba(255, 255, 255, 0.9);
  padding: 4.5rem 0;
  margin-top: 1rem;
}

.mission__inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem 3rem;
  align-items: center;
}

.mission__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  color: var(--signal);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.mission__copy {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
  max-width: 34rem;
}

/* Footer */
.site-footer {
  background: var(--asphalt);
  color: var(--mute);
  padding: 2.5rem 0 2.75rem;
}

.site-footer__inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.site-footer__blurb {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
  letter-spacing: 0;
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--mute);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lane);
}

/* =========================
   POST SINGLE
   ========================= */

.post-hero {
  padding: 6.5rem 0 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(232, 185, 35, 0.12), transparent 45%),
    var(--paper);
  border-bottom: 1px solid var(--rule);
}

.post-hero__inner {
  width: var(--page);
  margin: 0 auto;
  max-width: 48rem;
  padding-bottom: 2.5rem;
}

.post-hero__layout {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem 3rem;
  align-items: end;
  padding-bottom: 0;
}

.post-hero__copy {
  padding-bottom: 2.75rem;
  max-width: 40rem;
}

.post-hero__figure {
  margin: 0;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 16rem;
  padding: 1.5rem 1.5rem 0;
  background: linear-gradient(180deg, #2a2f38, #1c1f24);
  border: 1px solid rgba(18, 20, 26, 0.2);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.post-hero__figure img {
  width: 100%;
  max-height: 22rem;
  object-fit: contain;
  object-position: center bottom;
}

.post-meta-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: rgba(18, 20, 26, 0.06);
  border: 1px solid rgba(18, 20, 26, 0.12);
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius);
  line-height: 1.2;
}

a.post-meta-chip:hover,
a.post-meta-chip--author:hover {
  color: var(--ink);
  background: var(--lane);
  border-color: var(--lane);
}

.post-meta-chip--author {
  background: var(--white);
  border-color: var(--ink);
}

.post-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 1.25rem;
}

.post-kicker .tag {
  font-size: 0.78rem;
  padding: 0.32rem 0.65rem;
}

.post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

.post-lede {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--asphalt-mid);
  margin: 0;
  max-width: 38rem;
}

/* Author bio - BlogHash-style box */
.author-box {
  width: min(var(--measure), calc(100% - 2.5rem));
  margin: 0 auto 3.5rem;
  scroll-margin-top: 5.5rem;
}

.author-box__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.35rem 1.75rem;
  align-items: center;
  padding: 1.6rem 1.6rem;
  background: var(--white);
  border: 2px solid var(--ink);
}

.author-box__media {
  width: 5.5rem;
  height: 5.5rem;
}

.author-box__avatar {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

.author-box__initial {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--lane);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  border: 2px solid var(--ink);
}

.author-box__label {
  margin: 0 0 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.author-box__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.author-box__meta {
  margin: 0 0 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
}

.author-box__bio {
  margin: 0 0 1rem;
  color: var(--asphalt-mid);
  font-size: 1.05rem;
  line-height: 1.55;
}

.author-box__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--lane);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.author-box__cta:hover {
  color: var(--ink);
  background: #f3c93a;
}

.article {
  width: min(var(--measure), calc(100% - 2.5rem));
  margin: 2.75rem auto 4rem;
}

.article > * + * {
  margin-top: 1.25rem;
}

.article h2,
.article h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 2.5rem;
}

.article h2 { font-size: 1.6rem; }
.article h3 { font-size: 1.25rem; }

.article p {
  margin: 0;
}

.article a {
  color: var(--signal-deep);
}

.article ul,
.article ol {
  padding-left: 1.2rem;
}

.article li + li {
  margin-top: 0.45rem;
}

.article blockquote {
  margin: 2rem 0;
  padding: 0 0 0 1.25rem;
  border-left: 3px solid var(--lane);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--asphalt);
}

.article figure {
  margin: 2rem 0;
}

.article figcaption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.5rem;
}

/* Rider notes — signature stamp panel */
.rider-notes {
  margin: 2.5rem 0;
  border: 2px solid var(--ink);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(232, 185, 35, 0.06) 8px,
      rgba(232, 185, 35, 0.06) 16px
    ),
    var(--white);
  padding: 1.25rem 1.35rem 1.4rem;
  position: relative;
}

.rider-notes__stamp {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--lane);
  color: var(--ink);
  padding: 0.25rem 0.55rem;
}

.rider-notes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.rider-notes h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  color: var(--steel);
}

.rider-notes ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.rider-notes--verdict {
  border-color: var(--signal);
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(220, 31, 46, 0.05) 8px,
      rgba(220, 31, 46, 0.05) 16px
    ),
    var(--white);
}

.rider-notes--verdict .rider-notes__stamp {
  background: var(--signal);
  color: var(--white);
}

.rider-notes--verdict p {
  margin: 0.75rem 0 0;
  font-size: 1.1rem;
}

/* Related */
.related {
  width: var(--page);
  margin: 0 auto 4rem;
  padding-top: 1rem;
}

.related .post-row {
  grid-template-columns: 7rem 1fr auto;
}

/* Draft banner */
.draft-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--lane);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 800px) {
  .topics {
    grid-template-columns: 1fr 1fr;
  }

  .post-row {
    grid-template-columns: 6.5rem 1fr;
    gap: 1rem;
  }

  .post-row__arrow {
    display: none;
  }

  .post-row__excerpt {
    display: none;
  }

  .mission__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section__head {
    flex-wrap: wrap;
  }

  .rider-notes__grid {
    grid-template-columns: 1fr;
  }

  .post-hero__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-hero__copy {
    padding-bottom: 0;
  }

  .post-hero__figure {
    min-height: 12rem;
    padding: 1.25rem 1.25rem 0;
    order: -1;
  }

  .post-hero__figure img {
    max-height: 16rem;
  }

  .author-box__inner {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .nav {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .brand img {
    height: 2.75rem;
  }

  .site-header--solid .brand img {
    height: 2.5rem;
  }
}

@media (max-width: 520px) {
  :root {
    --page: calc(100% - 1.75rem);
  }

  .topics {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-bottom: 3rem;
  }
}


/* Contact modal */
.contact-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(28rem, calc(100vw - 2rem));
  width: 100%;
}
.contact-modal::backdrop {
  background: rgba(18, 20, 26, 0.72);
  backdrop-filter: blur(4px);
}
.contact-modal__panel {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
}
.contact-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--steel);
}
.contact-modal__panel h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-modal__lede {
  margin: 0 0 1.25rem;
  color: var(--steel);
  font-size: 1rem;
}
.contact-form {
  display: grid;
  gap: 0.9rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.75rem;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.contact-form__submit {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  background: var(--lane);
  color: var(--ink);
  padding: 0.85rem 1rem;
  cursor: pointer;
  border-radius: var(--radius);
}
.contact-form__submit:hover {
  background: #f3c93a;
}
.contact-form__note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--steel);
  letter-spacing: 0.03em;
}
