/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --bg: #C8C8C8;
  --black: #0A0A0A;
  --white: #F2F2F2;
  --blue: #0028FF;
  --gray-mid: #555;
  --gray-light: #E0E0E0;
  --border: 1px solid var(--black);
  --nav-h: 56px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  background: var(--bg);
  color: var(--black);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  cursor: none;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font: inherit; }

/* ─── Noise overlay ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9000;
}

/* ─── Custom Cursor ─────────────────────────────────────── */
@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  a, button, .work-card { cursor: pointer; }
}
#cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: background 0.15s;
}
#cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
}
body.cursor-hover #cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--blue);
}
body.cursor-hover #cursor-dot { background: var(--blue); }

/* ─── Navigation ────────────────────────────────────────── */
.nav {
  position: relative;
  height: var(--nav-h);
  background: var(--bg);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
  z-index: 100;
  border-bottom: var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-svg {
  /* Safari не резолвить height:100% в SVG всередині flex — задаємо явно */
  height: var(--nav-h);
  width: calc(var(--nav-h) * 398 / 194);
  display: block;
}

.nav__links {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.nav__link {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--black);
  font-weight: 400;
  transition: color 0.15s;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.nav__link:hover { color: var(--blue); }
.nav__link.active { color: var(--blue); font-weight: 700; }

.nav__meta {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--black);
  padding: 0 24px;
  display: flex;
  align-items: center;
}

/* ─── Main layout ───────────────────────────────────────── */
#app {
  min-height: 100vh;
}

/* ─── Page transitions ──────────────────────────────────── */
.page {
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Filter bar ─────────────────────────────────────────── */
.filter-bar {
  position: relative;
  z-index: 90;
  background: var(--bg);
  border-bottom: var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  height: 44px;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 0 16px;
  height: 44px;
  border-right: var(--border);
  color: var(--black);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.15s;
}
.filter-btn:first-child { padding-left: 0; }
.filter-btn:hover { color: var(--blue); }
.filter-btn.active {
  color: var(--blue);
  font-weight: 700;
}

/* ─── Works Grid ─────────────────────────────────────────── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: var(--border);
}

.work-card {
  position: relative;
  background: var(--black);
  border-right: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  cursor: none;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: border-color 0.2s;
}
.work-card.featured {
  grid-column: span 2;
  min-height: 460px;
}

/* ─── Photo cards ────────────────────────────────────────── */
.work-card__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.work-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* scale handled inside @media (hover: hover) */
.work-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 1;
}

/* Ghost letter background */
.work-card__ghost {
  display: none;
}

/* Card meta row */
.work-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}
.work-card__num { font-weight: 700; }
.work-card__cat-tag {
  background: rgba(255,255,255,0.07);
  padding: 3px 8px;
  letter-spacing: 0.06em;
}

/* Card title */
.work-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.work-card__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  white-space: pre-line;
}
.work-card.featured .work-card__title {
  font-size: clamp(3.8rem, 8vw, 7rem);
}
.work-card__subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* Card footer */
.work-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 2;
}
.work-card__arrow {
  color: rgba(255,255,255,0.2);
  font-size: 16px;
  transition: color 0.2s, transform 0.2s;
}
/* arrow hover handled inside @media (hover: hover) */

/* Hover overlay — desktop only */
.work-card__overlay {
  display: none;
}
@media (hover: hover) {
  .work-card__overlay {
    display: flex;
    position: absolute;
    inset: 0;
    background: var(--blue);
    padding: 20px;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
  }
  .work-card:hover .work-card__overlay { transform: translateY(0); }
  .work-card:hover .work-card__photo img { transform: scale(1.05); }
  .work-card:hover .work-card__arrow { color: var(--blue); transform: translateX(4px); }
}
.work-card__overlay-cat {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: auto;
}
.work-card__overlay-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  white-space: pre-line;
}
.work-card.featured .work-card__overlay-title {
  font-size: clamp(3.8rem, 8vw, 7rem);
}
.work-card__overlay-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  line-height: 1.5;
  max-width: 36ch;
}
.work-card__overlay-cta {
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 12px;
}

/* Hidden / filtered out */
.work-card.hidden {
  display: none;
}

/* ─── Work Detail ────────────────────────────────────────── */
.detail {
  padding: 40px 24px 80px;
  max-width: 1400px;
}

.detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 48px;
  transition: color 0.15s;
}
.detail__back:hover { color: var(--black); }
.detail__back span { font-size: 16px; }

.detail__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  border-bottom: var(--border);
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.detail__index {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.detail__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--black);
  white-space: pre-line;
}
.detail__subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 12px;
  letter-spacing: 0.1em;
}

.detail__specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-self: end;
  text-align: right;
}
.detail__spec-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  padding: 4px 0;
  padding-right: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.detail__spec-value {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--black);
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Visual block */
.detail__visual {
  background: var(--black);
  height: 540px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  margin-bottom: 32px;
}
.detail__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.detail__visual-ghost {
  position: absolute;
  right: -0.05em;
  bottom: -0.1em;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 22em;
  color: white;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.detail__visual-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.85;
  text-transform: uppercase;
  color: white;
  white-space: pre-line;
  position: relative;
  z-index: 1;
}
.detail__visual-year {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.detail__visual-num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}
.detail__visual-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 4px;
  background: var(--blue);
  width: 30%;
}

.detail__services {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: var(--border);
}
.detail__service-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  border: var(--border);
  padding: 6px 14px;
}

.detail__description {
  overflow: hidden;
}
.detail__description p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #333;
}

/* WordPress full content */
.detail__content { display: flex; flex-direction: column; gap: 24px; }

.detail__content p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #333;
  max-width: 64ch;
}

.detail__content h2,
.detail__content h3,
.detail__content h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 0.9;
  margin-top: 16px;
}
.detail__content h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.detail__content h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.detail__content h4 { font-size: 1.5rem; }

.detail__content img {
  width: 100%;
  height: auto;
  display: block;
}

.detail__content figure,
.detail__content .wp-block-image {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% + 48px);
  margin-left: -24px;
}
.detail__content figcaption {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
}

.detail__content ul,
.detail__content ol {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  padding-left: 20px;
  max-width: 64ch;
}
.detail__content li + li { margin-top: 6px; }

.detail__content blockquote {
  border-left: 3px solid var(--blue);
  padding: 12px 24px;
  margin: 0;
  background: rgba(0,40,255,0.04);
}
.detail__content blockquote p {
  font-style: italic;
  color: var(--black);
  font-size: 18px;
}

.detail__content .wp-block-gallery,
.detail__content .blocks-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  list-style: none;
  padding: 0;
}
.detail__content .wp-block-gallery figure,
.detail__content .blocks-gallery-item { margin: 0; }

.detail__content .wp-block-image { margin: 0; }
.detail__content .wp-block-image img { width: 100%; height: auto; display: block; }

/* YouTube / video embeds — full width */
.detail__content .wp-block-embed,
.detail__content .wp-block-video {
  width: calc(100% + 48px);
  margin-left: -24px;
}
.detail__content .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.detail__content .wp-block-embed__wrapper iframe,
.detail__content .wp-block-embed__wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.detail__next {
  margin-top: 80px;
  border-top: var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail__next-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}
.detail__next-link {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail__next-link:hover { color: var(--blue); }

/* ─── About Page ─────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h) - var(--ticker-h));
}

.about__left {
  padding: 60px 40px 60px 24px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
}
.about__page-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  margin-bottom: 40px;
}
.about__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 10vw, 9.5rem);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: auto;
}
.about__title em {
  font-style: italic;
  color: var(--blue);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--border);
  margin-top: 60px;
}
.about__stat {
  padding: 20px 0;
  border-right: var(--border);
}
.about__stat:last-child { border-right: none; }
.about__stat-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--black);
}
.about__stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-top: 4px;
}

.about__right {
  padding: 60px 24px 60px 40px;
  display: flex;
  flex-direction: column;
}
.about__desc {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  max-width: 52ch;
  margin-bottom: 48px;
}
.about__desc p + p { margin-top: 20px; }
.about__tagline {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--black);
  margin-top: 32px;
}

.about__disciplines {
  margin-top: auto;
  border-top: var(--border);
  padding-top: 24px;
}
.about__disc-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 16px;
}
.about__disc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about__disc-item {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  border: var(--border);
  padding: 6px 14px;
  letter-spacing: 0.05em;
  transition: background 0.15s, color 0.15s;
}
.about__disc-item:hover {
  background: var(--black);
  color: var(--white);
}

/* ─── Contact Page ───────────────────────────────────────── */
.contact {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--nav-h));
}

.contact__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}
.contact__hero-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  padding: 40px 24px 24px;
  border-right: var(--border);
}
.contact__hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--black);
  padding: 40px 24px 24px;
  grid-column: 1;
  grid-row: 2;
}
.contact__hero-title em { font-style: italic; color: var(--blue); }
.contact__hero-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.6;
  padding: 40px 24px 24px;
  grid-column: 2;
  grid-row: 1 / span 2;
  border-left: var(--border);
  display: flex;
  align-items: flex-end;
  max-width: 36ch;
}

.contact__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--border);
  flex: 1;
}
.contact__link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
  border-right: var(--border);
  min-height: 200px;
  transition: background 0.2s, color 0.2s;
  color: var(--black);
}
.contact__link-card:last-child { border-right: none; }
.contact__link-card:not(.contact__link-card--static):hover {
  background: var(--black);
  color: var(--white);
}
.contact__link-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.contact__link-card:hover .contact__link-label { color: rgba(255,255,255,0.4); }
.contact__link-value {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-transform: uppercase;
  line-height: 1.1;
  transition: color 0.2s;
}
.contact__link-arrow {
  font-size: 1.4rem;
  transition: transform 0.2s, color 0.2s;
  color: var(--gray-mid);
}
.contact__link-card:hover .contact__link-arrow {
  transform: translateX(6px);
  color: var(--blue);
}

.contact__cta {
  padding: 60px 24px;
  border-top: none;
}
.contact__cta-link {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 7rem);
  text-transform: lowercase;
  color: var(--black);
  transition: color 0.2s;
  display: inline-block;
  line-height: 1;
}
.contact__cta-link:hover { color: var(--blue); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  background: var(--bg);
}
.footer a:hover { color: var(--black); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav__meta { display: none; }
  .works-grid { grid-template-columns: 1fr; border-left: none; }
  .work-card, .work-card.featured {
    grid-column: span 1;
    min-height: 300px;
    border-left: var(--border);
  }
  .about { grid-template-columns: 1fr; }
  .about__left { border-right: none; border-bottom: var(--border); padding: 40px 20px; }
  .about__right { padding: 40px 20px; }
  .contact__hero { grid-template-columns: 1fr; }
  .contact__hero-sub { grid-column: 1; grid-row: 3; border-left: none; border-top: var(--border); padding: 20px; }
  .contact__hero-title { padding: 0 20px 24px; }
  .contact__hero-label { padding: 24px 20px 8px; }
  .contact__links { grid-template-columns: 1fr 1fr; }
  .contact__link-card { min-height: 140px; padding: 20px; }
  .contact__link-card:nth-child(2n) { border-right: none; }
  .contact__link-card:nth-child(n+3) { border-top: var(--border); }
  .contact__cta-link { font-size: clamp(2rem, 8vw, 4rem); }
  .detail__header { grid-template-columns: 1fr; }
  .detail__specs { text-align: left; }
}
