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

html {
  width: 100%;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #e890bc;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

/* ── Main (centered card area) ── */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Layout ── */
.card {
  width: min(92vw, 960px);
  margin: 0 auto;
  padding: 36px 44px 52px;
}

/* ── Header ── */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}

.signature {
  height: clamp(48px, 7vw, 80px);
  width: auto;
  display: block;
}

.nav {
  text-align: right;
}

.nav-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  margin-bottom: 4px;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.nav-links a:hover {
  opacity: 0.5;
}

.tagline {
  display: none;
  font-size: 12px;
  color: #666;
  font-weight: 300;
  font-style: italic;
}

/* ── Body ── */
.card-body {
  text-transform: uppercase;
}

.content-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.section-label {
  display: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 32px;
  color: #1a1a1a;
}

.col-left .section-label:first-child,
.col-right .section-label:first-child {
  margin-top: 0;
}

p {
  font-size: 13px;
  line-height: 1.3;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

p:last-child {
  margin-bottom: 0;
}

.muted {
  color: #000;
  font-size: 12.5px;
}

.inline-link {
  color: #000;
  text-decoration: none;
  text-underline-offset: 2px;
  font-weight: 500;
}

.inline-link:hover {
  opacity: 0.5;
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 28px 24px 32px;
}

.footer-latin {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.footer-langs {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.8;
  direction: rtl;
  unicode-bidi: plaintext;
}

.footer-img img {
  width: 50px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .card {
    padding: 28px 24px 40px;
    max-height: 92vh;
  }

  .card-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }

  .nav {
    text-align: left;
    margin-top: -20px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .content-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .col-right {
    padding-top: 0px;
    margin-top: -15px;
  }
}
