/* ============================================================
   Магнетит — landing styles v2
   Объёмнее: градиенты, текстура, тени, лучшая типографика
   ============================================================ */

:root {
  --color-bg: #0a0908;
  --color-bg-light: #14110e;
  --color-surface: #1f1b16;
  --color-surface-hi: #2a2520;
  --color-text: #f5efe4;
  --color-text-dim: #aea696;
  --color-text-dimmer: #6b6557;
  --color-accent: #d4915b;
  --color-accent-hi: #e8a76e;
  --color-accent-dim: #8a5e3a;
  --color-border: #2a2520;
  --color-border-hi: #3d362e;
  --color-success: #7eb778;
  --color-progress: #d4b15b;

  --font-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --container-max: 1180px;
  --gutter: 28px;
  --radius: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.25);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5), 0 4px 10px rgba(0,0,0,0.3);
  --shadow-accent: 0 8px 24px rgba(212, 145, 91, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  padding-bottom: 64px;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-hi);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   Декоративный шум (текстура поверх всего)
   ============================================================ */

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   Sticky CTA (mobile bottom bar)
   ============================================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-dim) 100%);
  color: #1a1612 !important;
  padding: 16px;
  font-weight: 700;
  text-align: center;
  z-index: 100;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.6);
  font-size: 15px;
  letter-spacing: 0.01em;
}

.sticky-cta__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 2px;
}

@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 64px; }
}

/* ============================================================
   Hero — глубокий, с фоном, градиентом, ритмом
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 64px;
  overflow: hidden;
  background: var(--color-bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Пытается загрузить hero.png; если файла нет — рендерится только градиент-fallback */
  background:
    url("images/hero.png") center / cover no-repeat,
    radial-gradient(ellipse at 30% 20%, rgba(212, 145, 91, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(140, 90, 50, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, #1a1612 0%, #0a0908 50%, #14110e 100%);
  filter: brightness(0.85) contrast(1.05) saturate(1.05);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212, 145, 91, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.25) 0%, rgba(10, 9, 8, 0.6) 60%, rgba(10, 9, 8, 0.92) 100%);
  z-index: 1;
}

.hero > .nav,
.hero > .hero__content,
.hero > .hero__scroll {
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  gap: 48px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 19px;
  color: var(--color-accent);
  text-shadow: 0 2px 12px rgba(212, 145, 91, 0.4);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.nav__links a {
  color: var(--color-text-dim);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav__links a:hover {
  color: var(--color-text);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 720px) {
  .nav__links { display: none; }
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 80px;
}

.hero__kicker {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero__kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hi) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--color-text-dim);
  max-width: 740px;
  line-height: 1.55;
  margin-bottom: 44px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid transparent;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dim) 100%);
  color: #1a1612 !important;
  box-shadow: var(--shadow-accent), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 145, 91, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(135deg, var(--color-accent-hi) 0%, var(--color-accent) 100%);
  color: #1a1612 !important;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text) !important;
  border-color: var(--color-border-hi);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
  background: rgba(212, 145, 91, 0.08);
  transform: translateY(-2px);
}

.hero__note {
  color: var(--color-text-dim);
  font-size: 15px;
  max-width: 620px;
  line-height: 1.55;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-dimmer);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

@media (max-width: 720px) {
  .hero__scroll { display: none; }
}

/* ============================================================
   Section base
   ============================================================ */

.section {
  padding: 96px 0;
  position: relative;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.section--dark {
  background:
    radial-gradient(ellipse at top, rgba(212, 145, 91, 0.04) 0%, transparent 60%),
    var(--color-bg-light);
}

.section--accent {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 145, 91, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 145, 91, 0.08) 0%, transparent 60%),
    var(--color-bg-light);
  border-top: 1px solid var(--color-accent-dim);
  border-bottom: 1px solid var(--color-accent-dim);
}

/* ============================================================
   Anchors (уже подписанные арендаторы)
   ============================================================ */

.anchors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 24px;
  max-width: 760px;
}

@media (max-width: 540px) {
  .anchors-grid {
    grid-template-columns: 1fr;
  }
}

.anchor-card {
  background:
    linear-gradient(135deg, rgba(212, 145, 91, 0.08) 0%, transparent 60%),
    var(--color-surface);
  border: 1px solid var(--color-accent-dim);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212, 145, 91, 0.1) inset;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.anchor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
  border-color: var(--color-accent);
}

@media (max-width: 540px) {
  .anchor-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
}

.anchor-card__logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 16px;
}

.anchor-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.anchor-card__logo-fallback {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-align: center;
  line-height: 1.3;
}

.anchor-card__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.anchor-card__meta {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px !important;
}

.anchor-card__body p {
  color: var(--color-text-dim);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.section__kicker {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section__kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section__subtitle {
  color: var(--color-text-dim);
  font-size: 18px;
  max-width: 720px;
  line-height: 1.55;
  margin-bottom: 56px;
}

/* ============================================================
   Vision grid
   ============================================================ */

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

@media (min-width: 1100px) {
  .vision-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vision-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, transparent 100%),
    var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.vision-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hi);
  box-shadow: var(--shadow-lg);
}

.vision-card__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.vision-card p {
  color: var(--color-text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   Spaces
   ============================================================ */

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.space-card {
  background:
    linear-gradient(135deg, rgba(212, 145, 91, 0.03) 0%, transparent 50%),
    var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.space-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.space-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent-dim);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.space-card:hover::before {
  opacity: 1;
}

.space-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.space-card__floor {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
}

.space-card__area {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hi) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.space-card p {
  color: var(--color-text-dim);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.space-card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 12px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

.space-card__tag--available {
  color: var(--color-success);
  background: rgba(126, 183, 120, 0.1);
  border: 1px solid rgba(126, 183, 120, 0.2);
}

.space-card__tag--partial {
  color: var(--color-progress);
  background: rgba(212, 177, 91, 0.1);
  border: 1px solid rgba(212, 177, 91, 0.2);
}

/* ============================================================
   Status timeline
   ============================================================ */

.status-timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--color-border);
  max-width: 800px;
}

.status-item {
  position: relative;
  padding-bottom: 36px;
}

.status-item:last-child { padding-bottom: 0; }

.status-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-border);
  border: 3px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.status-item--done::before {
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(126, 183, 120, 0.12), var(--shadow-sm);
}

.status-item--inprogress::before {
  background: var(--color-progress);
  box-shadow: 0 0 0 4px rgba(212, 177, 91, 0.18), var(--shadow-sm);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 177, 91, 0.18), var(--shadow-sm); }
  50% { box-shadow: 0 0 0 8px rgba(212, 177, 91, 0.08), var(--shadow-sm); }
}

.status-item--planned::before {
  background: var(--color-bg-light);
  border-color: var(--color-border-hi);
}

.status-item__date {
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-item h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.status-item p {
  color: var(--color-text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   Tenants grid
   ============================================================ */

.tenants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.tenant-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%),
    var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.tenant-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-hi);
  box-shadow: var(--shadow-md);
}

.tenant-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}

.tenant-card ul {
  list-style: none;
}

.tenant-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}

.tenant-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--color-accent-dim);
}

.tenant-card li:last-child {
  border-bottom: none;
}

.tenants-note {
  color: var(--color-text-dim);
  font-size: 15px;
  font-style: italic;
  padding: 20px;
  border-left: 3px solid var(--color-accent-dim);
  background: rgba(212, 145, 91, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================================================
   Location section (карта + акценты)
   ============================================================ */

.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 920px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-hi);
  box-shadow: var(--shadow-lg);
  min-height: 480px;
  background: var(--color-bg);
  position: relative;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  /* Slight desaturation чтобы карта не «выскакивала» из тёмной премиум-палитры */
  filter: grayscale(0.15) brightness(0.95);
}

.location-map__link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-hi);
  border-radius: 6px;
  color: var(--color-text) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  z-index: 2;
}

.location-map__link:hover {
  background: var(--color-accent);
  color: #1a1612 !important;
  border-color: var(--color-accent);
}

@media (max-width: 920px) {
  .location-map {
    min-height: 360px;
  }
}

.location-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%),
    var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.location-point:hover {
  transform: translateX(2px);
  border-color: var(--color-accent-dim);
  background:
    linear-gradient(180deg, rgba(212, 145, 91, 0.04) 0%, transparent 100%),
    var(--color-bg);
}

.location-point__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 145, 91, 0.12) 0%, rgba(212, 145, 91, 0.04) 100%);
  border: 1px solid var(--color-accent-dim);
  border-radius: var(--radius);
  color: var(--color-accent);
}

.location-point__body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.location-point__body p {
  font-size: 13.5px;
  color: var(--color-text-dim);
  line-height: 1.5;
}

/* ============================================================
   Specs grid
   ============================================================ */

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-light);
}

@media (min-width: 1100px) {
  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.specs-item {
  padding: 24px 28px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.specs-item__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-dimmer);
  margin-bottom: 8px;
  font-weight: 600;
}

.specs-item__value {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.specs-item__hint {
  display: block;
  font-size: 13px;
  color: var(--color-text-dim);
  font-weight: 400;
  margin-top: 4px;
}

/* ============================================================
   Contacts
   ============================================================ */

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  margin-bottom: 32px;
  align-items: start;
}

@media (max-width: 760px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contacts-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.contacts-role {
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contacts-blurb {
  color: var(--color-text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 380px;
}

.contacts-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--color-text) !important;
  box-shadow: var(--shadow-sm);
}

.contact-link:hover {
  border-color: var(--color-accent-dim);
  background: var(--color-surface);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-link__icon {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-link__label {
  font-size: 11px;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.contact-link__value {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 540px) {
  .contact-link {
    grid-template-columns: 32px 1fr;
  }
  .contact-link__value {
    grid-column: 2;
    font-size: 14px;
  }
}

.contacts-note {
  color: var(--color-text-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-dim);
  font-size: 14px;
  text-align: center;
  background: var(--color-bg);
}

.footer__small {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-text-dimmer);
}
