:root {
  color: #ecdfcb;
  background: #10231d;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 25% 18%, rgba(190, 159, 94, 0.22), transparent 30rem),
    radial-gradient(circle at 80% 72%, rgba(107, 138, 111, 0.28), transparent 28rem),
    #10231d;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.panel {
  width: min(100%, 42rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(236, 223, 203, 0.18);
  border-radius: 8px;
  background: rgba(16, 35, 29, 0.72);
  box-shadow: 0 2rem 6rem rgba(4, 10, 8, 0.28);
  text-align: center;
  backdrop-filter: blur(18px);
}

.mark {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
}

.mark span {
  position: absolute;
  inset: 0;
  border-radius: 55% 55% 45% 45%;
  background: #bda36a;
  transform-origin: 50% 88%;
  opacity: 0.9;
}

.mark span:nth-child(1) {
  transform: rotate(-32deg) translateY(-0.2rem);
}

.mark span:nth-child(2) {
  transform: rotate(0deg) translateY(-0.55rem);
  background: #d2bd82;
}

.mark span:nth-child(3) {
  transform: rotate(32deg) translateY(-0.2rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #bda36a;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #f1e6d2;
  font-family: Georgia, serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0;
}

.lead {
  margin: 1.2rem auto 0;
  max-width: 34rem;
  color: #ecdfcb;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  line-height: 1.45;
}

.note {
  margin: 1rem auto 0;
  max-width: 30rem;
  color: rgba(236, 223, 203, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.contact {
  display: inline-flex;
  margin-top: 2rem;
  color: #f1e6d2;
  text-decoration: none;
  border-bottom: 1px solid rgba(241, 230, 210, 0.45);
  padding-bottom: 0.2rem;
}

.contact:focus-visible {
  outline: 2px solid #d2bd82;
  outline-offset: 0.4rem;
}
