/* ---------- header ---------- */

.site-header {
  position: relative;
  z-index: 10;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 14px;
  gap: 24px;
}

.mark-link {
  display: block;
  flex: none;
}

.mark-link img {
  height: 34px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px clamp(16px, 3vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 720px) {
  .site-nav-wrap {
    order: 3;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--line-1);
  }

  .site-nav {
    gap: 10px 20px;
  }
}

.site-nav a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color 0.15s var(--ease-out);
}

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

.locale-switch {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: none;
}

.locale-switch a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-low);
}

.locale-switch a[aria-current='true'] {
  color: var(--signal);
}

/* ---------- catalog mega menu: a lit panel dropped from the nav rail,
   built from the same datasheet-row language as the channel list ---------- */

.nav-item.has-mega {
  position: static;
}

@media (min-width: 721px) {
  .nav-item.has-mega {
    position: relative;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.nav-caret {
  width: 9px;
  height: 6px;
  color: var(--text-low);
  transition: transform 0.18s var(--ease-out), color 0.18s var(--ease-out);
}

.has-mega:hover .nav-caret,
.has-mega:focus-within .nav-caret,
.has-mega.is-open .nav-caret {
  color: var(--signal);
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 21px);
  left: -16px;
  width: min(360px, calc(100vw - 2 * var(--inset)));
  background: var(--ink-1);
  border: 1px solid var(--line-1);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out), visibility 0.18s;
  z-index: 20;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-item {
  position: relative;
  display: block;
  padding: 12px 14px;
  transition: background 0.15s var(--ease-out);
}

.mega-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.mega-item:hover,
.mega-item:focus-visible {
  background: var(--signal-soft);
}

.mega-item:hover::before,
.mega-item:focus-visible::before {
  background: var(--signal);
  box-shadow: 3px 0 10px -3px var(--signal-glow);
}

.mega-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-name {
  font-family: var(--face);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-hi);
}

.mega-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.4;
  max-width: 40ch;
}

.mega-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 14px 10px 10px;
  border-top: 1px solid var(--line-1);
  font-family: var(--face-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--signal);
}

.mega-all-arrow {
  width: 12px;
  height: 10px;
  transition: transform 0.15s var(--ease-out);
}

.mega-all:hover .mega-all-arrow,
.mega-all:focus-visible .mega-all-arrow {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  .nav-item.has-mega {
    width: 100%;
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.2s var(--ease-out);
  }

  .has-mega.is-open,
  .has-mega:focus-within {
    grid-template-rows: auto 1fr;
  }

  .mega-menu {
    position: static;
    width: auto;
    min-height: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 8px;
    overflow: hidden;
  }
}

/* ---------- hero: the control room at first light ---------- */

/* Base (no JS / reduced motion): the hero is a normal in-flow section that
   simply scrolls away like any other — a safe, always-working fallback. */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-perspective: 1400px;
  perspective: 1400px;
}

/* JS enhancement: one gesture (wheel / touch / key / click) is enough to
   leave the splash — no scroll-scrubbing. The hero covers the viewport,
   the page underneath is already in place, and a single fixed-duration
   transition reveals it; scroll is locked only for that transition. */
html.js-intro .hero {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ink-0);
  transition: opacity 0.4s var(--ease-out);
}

/* the panel (mark, tagline, scene) is already gone by the time this starts —
   this is the backdrop itself dissolving, the last, slowest layer to clear,
   so the finished page arrives as a soft reveal rather than a hard cut */
html.js-intro.intro-done .hero {
  opacity: 0;
  pointer-events: none;
}

/* iOS Safari keeps rubber-banding the page under overflow:hidden alone;
   pinning the body itself is the reliable cross-device lock */
html.js-intro.intro-locking,
html.js-intro.intro-locking body {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

html.js-intro.intro-locking body {
  position: fixed;
  inset: 0;
  width: 100%;
}

/* the panel: mark, tagline and scene move together as one hatch hinged at the
   top — the bottom edge swings up and back into the depth on trigger */
.hero-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transform-origin: 50% 0%;
  transition: transform 0.45s cubic-bezier(0.6, 0, 0.4, 1), opacity 0.4s ease, filter 0.4s ease;
}

.hero-panel.intro-out {
  opacity: 0.04;
  filter: blur(7px);
  transform: translateY(-200px) rotateX(80deg) scale(0.88);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scene-art {
  width: min(1600px, 130vw);
  height: auto;
  color: var(--text-low);
  opacity: 0.9;
}

.hero-scene-meter rect {
  animation: meter-idle 3.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: bottom;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene-meter rect {
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 3.2vw, 34px);
  text-align: center;
  padding: 0 24px;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(20px, 4vh, 40px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text-low);
  cursor: pointer;
  transition: opacity 0.2s linear, color 0.15s var(--ease-out);
}

.hero-scroll-cue:hover {
  color: var(--signal);
}

/* the header stays off the splash and fades in only once the visitor has
   actually reached the site — nothing competes with the opening scene */
html.js-intro .site-header {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out) 0.1s;
}

html.js-intro.intro-done .site-header {
  opacity: 1;
  pointer-events: auto;
}

.hero-scroll-cue span {
  font-family: var(--face-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-cue svg {
  width: 16px;
  height: 16px;
  animation: scroll-cue-bob 1.8s var(--ease-out) infinite;
}

@keyframes scroll-cue-bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(5px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue svg {
    animation: none;
  }
}

.hero-mark {
  width: clamp(160px, 18vw, 280px);
  height: auto;
}

.hero-tagline {
  margin: 0;
  max-width: 36ch;
  font-family: var(--face);
  font-weight: 300;
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.5;
  color: var(--text-mid);
}

/* the meter: the room's one idling instrument, always faintly alive */
.hero-meter {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 20px;
}

.hero-meter span {
  width: 3px;
  border-radius: 1px;
  background: var(--signal);
  opacity: 0.5;
  animation: meter-idle 2.8s ease-in-out infinite;
}

.hero-meter span:nth-child(1) { height: 40%; animation-delay: -1.9s; }
.hero-meter span:nth-child(2) { height: 70%; animation-delay: -0.6s; }
.hero-meter span:nth-child(3) { height: 100%; animation-delay: -2.4s; }
.hero-meter span:nth-child(4) { height: 55%; animation-delay: -1.1s; }
.hero-meter span:nth-child(5) { height: 80%; animation-delay: -0.2s; }
.hero-meter span:nth-child(6) { height: 35%; animation-delay: -1.6s; }
.hero-meter span:nth-child(7) { height: 62%; animation-delay: -0.9s; }

@keyframes meter-idle {
  0%, 100% { opacity: 0.35; transform: scaleY(0.72); }
  50% { opacity: 0.85; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-meter span {
    animation: none;
    opacity: 0.6;
  }
}

@keyframes hero-resolve {
  from {
    opacity: 0;
    filter: blur(13px);
    transform: scale(0.986);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.hero-mark.reveal {
  animation: hero-resolve 1.1s var(--ease-out) 0.15s backwards;
}

.hero-tagline.reveal {
  animation: reveal 0.8s var(--ease-out) 0.65s backwards;
}

/* ---------- section heading ---------- */

.section {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line-1);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head h2 {
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  margin: 0;
  color: var(--text-hi);
}

.section-head .count {
  font-family: var(--face-mono);
  font-size: 12px;
  color: var(--text-low);
  letter-spacing: 0.04em;
}

/* ---------- channel list: categories read as a rack of numbered channels,
   not a grid of icon-over-text cards ---------- */

.channel-list {
  border-top: 1px solid var(--line-1);
}

.channel-row {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem 1fr minmax(0, 32ch) 1.75rem;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line-1);
  transition: background 0.18s var(--ease-out);
}

.channel-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}

.channel-row:hover {
  background: var(--signal-soft);
}

.channel-row:hover::before {
  background: var(--signal);
  box-shadow: 3px 0 10px -3px var(--signal-glow);
}

.channel-row .index {
  font-family: var(--face-mono);
  font-size: 12px;
  color: var(--text-low);
  letter-spacing: 0.04em;
}

.channel-row .name {
  font-family: var(--face);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--text-hi);
}

.channel-row .desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.channel-row .icon {
  width: 28px;
  height: 28px;
  color: var(--text-low);
  filter: drop-shadow(-1.5px 0 0 rgba(53, 212, 191, 0.22));
  transition: color 0.18s var(--ease-out), filter 0.18s var(--ease-out);
  justify-self: end;
}

.channel-row:hover .icon {
  color: var(--signal);
}

@media (max-width: 720px) {
  .channel-row {
    grid-template-columns: 2.25rem 1fr 1.5rem;
  }
  .channel-row .desc {
    display: none;
  }
}

/* ---------- spec list: products read as a datasheet index, not product cards ---------- */

.spec-list {
  border-top: 1px solid var(--line-1);
}

.spec-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-1);
  transition: background 0.18s var(--ease-out);
}

.spec-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}

.spec-row:hover {
  background: var(--signal-soft);
}

.spec-row:hover::before {
  background: var(--signal);
  box-shadow: 3px 0 10px -3px var(--signal-glow);
}

.spec-row .plate {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 120% at 22% 18%, var(--signal-soft), transparent 65%),
    var(--ink-1);
  color: var(--text-low);
}

.spec-row .plate svg {
  width: 64%;
  height: 64%;
}

.spec-row .info .name {
  font-family: var(--face);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-hi);
}

.spec-row .info .summary {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
  margin-top: 4px;
  max-width: 56ch;
}

.spec-row .price {
  font-family: var(--face-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 14px;
  color: var(--signal);
  white-space: nowrap;
}

/* the meter: three bars standing in for a stock jewel, lit by availability */
.meter {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 13px;
  flex: none;
}

.meter span {
  width: 3px;
  background: var(--line-2);
  border-radius: 1px;
}

.meter span:nth-child(1) { height: 45%; }
.meter span:nth-child(2) { height: 72%; }
.meter span:nth-child(3) { height: 100%; }

.meter[data-in-stock='true'] span {
  background: var(--signal);
}

.meter-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-low);
}

.meter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

@media (max-width: 720px) {
  .spec-row {
    grid-template-columns: 44px 1fr auto;
  }
  .spec-row .meter-row {
    display: none;
  }
  .spec-row .plate {
    width: 44px;
    height: 44px;
  }
}

/* ---------- news list: same datasheet-row rhythm as the channel/spec lists ---------- */

.news-list {
  border-top: 1px solid var(--line-1);
}

.news-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line-1);
}

.news-date {
  font-family: var(--face-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-low);
  padding-top: 3px;
}

.news-title {
  display: block;
  font-family: var(--face);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-hi);
  margin-bottom: 6px;
}

.news-excerpt {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 68ch;
}

@media (max-width: 640px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ---------- trust strip ---------- */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-1);
}

.trust-item {
  padding: 28px;
  border-right: 1px solid var(--line-1);
  border-top: 2px solid transparent;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item .label {
  margin-bottom: 10px;
}

.trust-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--line-1);
  }
  .trust-item:last-child {
    border-bottom: none;
  }
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line-1);
  padding: 24px 0;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-low);
}

/* ---------- button ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--action-bg);
  color: var(--action-text);
  font-family: var(--face);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.15s var(--ease-out);
}

.btn:hover {
  opacity: 0.85;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 27px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text-hi);
  font-family: var(--face);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.15s var(--ease-out), color 0.15s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--signal);
  color: var(--signal);
}

/* ---------- product page ---------- */

.product-page {
  padding-block: clamp(32px, 5vw, 56px) clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.product-gallery {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(70% 60% at 30% 20%, var(--signal-soft), transparent 70%),
    radial-gradient(60% 55% at 80% 85%, var(--ambient-soft), transparent 70%),
    var(--ink-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
}

.product-gallery svg {
  position: relative;
  width: 58%;
  height: 58%;
}

.product-info .breadcrumb {
  font-family: var(--face-mono);
  font-size: 12px;
  color: var(--text-low);
  margin-bottom: 18px;
}

.product-info .breadcrumb a:hover {
  color: var(--text-mid);
}

.product-info h1 {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text-hi);
}

.product-info .brand-model {
  font-family: var(--face-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 20px;
}

.product-info .summary {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 52ch;
}

.buy-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  margin-bottom: 32px;
}

.buy-box .price {
  font-family: var(--face-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 22px;
  color: var(--signal);
}

.buy-box .meter-label {
  font-size: 12px;
}

/* ---------- spec table ---------- */

.spec-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.spec-group .label {
  margin-bottom: 10px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-top: 1px solid var(--line-1);
}

.spec-table tr:last-child {
  border-bottom: 1px solid var(--line-1);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 10px 0;
  font-weight: 400;
  font-size: 14px;
  vertical-align: baseline;
}

.spec-table th {
  color: var(--text-mid);
  font-weight: 300;
  width: 45%;
}

.spec-table td {
  color: var(--text-hi);
  font-family: var(--face-mono);
  font-variant-numeric: tabular-nums;
}

.product-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 68ch;
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .product-page {
    grid-template-columns: 1fr;
  }
}

/* ---------- prose page (about / delivery) ---------- */

.prose-page {
  padding-block: clamp(40px, 6vw, 72px) clamp(56px, 7vw, 96px);
  max-width: 74ch;
}

.prose-page.catalog-head {
  padding-bottom: 0;
}

.prose-page h1 {
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  color: var(--text-hi);
  margin: 0 0 24px;
}

.prose-page p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 20px;
}

.terms-list {
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-1);
}

.terms-list > div {
  display: grid;
  grid-template-columns: minmax(0, 22ch) 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-1);
}

.terms-list dt {
  font-family: var(--face-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-low);
  text-transform: uppercase;
}

.terms-list dd {
  margin: 0;
  font-size: 14px;
  color: var(--text-hi);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .terms-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ---------- contact page ---------- */

.contact-page {
  padding-block: clamp(40px, 6vw, 72px) clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 34ch) 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.contact-page h1 {
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  color: var(--text-hi);
  margin: 0 0 20px;
}

.contact-info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 16px;
}

.contact-info a {
  color: var(--signal);
}

.contact-channel {
  padding-top: 20px;
  border-top: 1px solid var(--line-1);
}

.contact-channel .label {
  margin-bottom: 8px;
}

.contact-channel a {
  font-family: var(--face-mono);
  font-size: 15px;
  color: var(--text-hi);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-low);
  text-transform: uppercase;
  font-family: var(--face);
}

.form-field input,
.form-field textarea {
  background: var(--ink-1);
  border: 1px solid var(--line-1);
  color: var(--text-hi);
  padding: 12px 14px;
  font-family: var(--face);
  font-size: 14px;
  transition: border-color 0.15s var(--ease-out);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--signal);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 780px) {
  .contact-page {
    grid-template-columns: 1fr;
  }
}
