:root {
  --pma-gold: #7c6f42;
  --pma-black: #0a0a0a;
  --pma-bg: #f7f5ef;
  --pma-white: #ffffff;
  --pma-muted: #5f5f5f;
  --pma-border: rgba(10, 10, 10, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--pma-black);
  background:
    radial-gradient(circle at top left, rgba(124, 111, 66, 0.16), transparent 34rem),
    linear-gradient(135deg, var(--pma-bg), #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.875rem 2rem 2rem;
  line-height: 1.5;
}

.page {
  width: 100%;
  max-width: 52rem;
}

.card {
  background: var(--pma-white);
  border: 0.0625rem solid var(--pma-border);
  border-top: 0.5rem solid var(--pma-gold);
  border-radius: 1.125rem;
  box-shadow: 0 1.5rem 4.375rem rgba(10, 10, 10, 0.09);
  padding: clamp(2rem, 5vw, 4rem);
}

.eyebrow {
  color: var(--pma-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1 {
  color: var(--pma-black);
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.intro {
  color: var(--pma-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 46rem;
  margin: 0 0 2rem;
}

.divider {
  width: 4.5rem;
  height: 0.25rem;
  background: var(--pma-gold);
  border-radius: 999rem;
  margin: 0 0 2rem;
}

.contact {
  border-top: 0.0625rem solid var(--pma-border);
  padding-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
  font-size: 1rem;
}

.contact strong {
  color: var(--pma-black);
}

.contact a {
  color: var(--pma-black);
  text-decoration-color: var(--pma-gold);
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.1875rem;
}

.contact a:hover,
.contact a:focus {
  color: var(--pma-gold);
}

address {
  font-style: normal;
  color: var(--pma-muted);
}

@media (max-width: 32.5rem) {
  body {
    align-items: flex-start;
    padding: 3.875rem 1rem 1rem;
  }

  .card {
    border-radius: 0.875rem;
  }
}