:root {
  --bg: #f7f1e7;
  --bg-deep: #ede2d1;
  --panel: rgba(227, 207, 173, 0.94);
  --line: rgba(124, 94, 55, 0.24);
  --text: #14223f;
  --muted: #655746;
  --shadow: 0 24px 60px rgba(106, 77, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 189, 146, 0.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(245, 234, 214, 0.5), transparent 30%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 58%, var(--bg-deep) 100%);
  font-family: Georgia, "Times New Roman", serif;
}

.holding-page {
  width: 100%;
  display: grid;
  place-items: center;
}

.holding-card {
  width: min(100%, 620px);
  padding: clamp(32px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(8px);
}

.brand {
  display: block;
  width: min(100%, 390px);
  margin: 0 auto 28px;
}

.copy + .copy {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.copy {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.tagline {
  margin: 0;
  font-size: clamp(1.02rem, 2.65vw, 1.32rem);
  line-height: 1.45;
  color: #1a2b53;
}

.details {
  display: grid;
  gap: 8px;
  font-style: normal;
  color: var(--text);
  line-height: 1.7;
}

.details span:first-child {
  font-size: clamp(1.18rem, 3.2vw, 1.5rem);
  line-height: 1.25;
}

.details a {
  color: inherit;
  text-decoration: none;
}

.details a:hover,
.details a:focus-visible {
  text-decoration: underline;
}

.status {
  margin: 0;
  font-size: clamp(1rem, 2.55vw, 1.16rem);
  color: var(--muted);
  line-height: 1.6;
}

.status-linkedin {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.linkedin-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.linkedin-badge {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 10px;
  background: #0a66c2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.linkedin-badge-link:hover .linkedin-badge,
.linkedin-badge-link:focus-visible .linkedin-badge {
  box-shadow: 0 12px 28px rgba(20, 34, 63, 0.12);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .holding-card {
    border-radius: 20px;
  }

  .brand {
    width: min(100%, 350px);
    margin-bottom: 22px;
  }
}
