:root {
  --teal: #013a3c;
  --olive: #e1d356;
  --heading: #e5e5e5;
  --body: #d6cfc7;
  --green: #11b494;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--teal);
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px;
}

.card {
  width: 100%;
  max-width: 654px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.label-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mark {
  display: block;
  flex-shrink: 0;
}

.label {
  margin: 0;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--olive);
}

.heading {
  margin: 0;
  padding-top: 8px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  color: var(--heading);
}

.heading-italic {
  font-style: italic;
}

.body {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: var(--body);
}

.body em {
  font-style: italic;
}

.divider {
  width: 96px;
  height: 1px;
  border: none;
  background: var(--olive);
  margin: 0;
}

.contact {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--heading);
}

.contact a {
  color: var(--heading);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.4);
  text-underline-offset: 2px;
}

.footer {
  display: flex;
  gap: 8px;
  margin-top: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: var(--green);
}
