/* Spready — minimal business card */

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

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F5F2EC;
  color: #14141A;
  min-height: 100vh;
  min-height: 100dvh;
}

.sp-card {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 28px clamp(20px, 5vw, 48px);
  max-width: 880px;
  margin: 0 auto;
  gap: clamp(40px, 8vh, 80px);
}

/* Top row: logo + lang toggle */
.sp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sp-top img {
  height: var(--sp-logo-size, 44px);
  width: auto;
  display: block;
}

/* Body */
.sp-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 5vh, 44px);
  padding: clamp(8px, 4vh, 32px) 0;
}

.sp-lead {
  font-size: clamp(25px, 3.9vw, 38px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 28ch;
  margin: 0;
  text-wrap: balance;
  color: #14141A;
  font-family: inherit;
}
.sp-lead em {
  font-style: normal;
  color: var(--accent, #FF3B47);
  font-weight: 600;
}

.sp-body-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(20,20,26,0.65);
  max-width: 56ch;
  margin: -8px 0 0;
  text-wrap: pretty;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}
.sp-body-text p {
  margin: 0;
}

/* Status pill */
.sp-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(20, 20, 26, 0.05);
  border: 1px solid rgba(20, 20, 26, 0.08);
  width: fit-content;
  font: 600 12px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  color: rgba(20, 20, 26, 0.75);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sp-status:hover {
  background: rgba(20, 20, 26, 0.08);
  color: #14141A;
  border-color: rgba(20, 20, 26, 0.16);
}
.sp-status:hover .sp-status-arrow {
  transform: translate(2px, -2px);
}
.sp-status-arrow {
  font-size: 11px;
  opacity: 0.55;
  transition: transform 0.18s;
}

/* Reduced motion */

/* Contact grid */
.sp-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  border-top: 1px solid rgba(20,20,26,0.10);
  padding-top: clamp(20px, 3vh, 28px);
}
.sp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.sp-label {
  font: 600 10px/1 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,20,26,0.45);
}
.sp-val {
  font-size: 15px;
  line-height: 1.45;
  color: #14141A;
  font-weight: 500;
}
.sp-val a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(20,20,26,0.20);
  transition: border-color 0.18s, color 0.18s;
}
.sp-val a:hover {
  color: var(--accent, #FF3B47);
  border-bottom-color: var(--accent, #FF3B47);
}
.sp-val-mute {
  color: rgba(20,20,26,0.55);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}

@media (max-width: 560px) {
  .sp-card { padding: 22px 22px 28px; gap: 36px; }
  .sp-contact { grid-template-columns: 1fr; gap: 22px; }
}

/* Reduced motion handled per-element where needed */
