@font-face {
  font-family: "Luxerie";
  src: url("assets/luxerie.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Cambria Custom";
  src: url("assets/cambria.ttc") format("truetype-collection");
  font-display: swap;
}

:root {
  --deep-teal: #22505f;
  --lagoon: #29748b;
  --coral: #e37965;
  --shell: #fdfbf7;
  --sand: #e8cca5;
  --text-soft: rgba(253, 251, 247, 0.8);
  --border: rgba(253, 251, 247, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cambria Custom", Cambria, Georgia, serif;
  color: var(--shell);
  background:
    radial-gradient(circle at top, rgba(232, 204, 165, 0.22), transparent 28%),
    linear-gradient(180deg, var(--lagoon) 0%, var(--deep-teal) 100%);
}

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

.card {
  width: min(100%, 620px);
  padding: 48px 28px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(253, 251, 247, 0.08);
  backdrop-filter: blur(10px);
}

.logo {
  width: min(220px, 48vw);
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.eyebrow,
.label {
  margin: 0;
  color: var(--sand);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

h1 {
  margin: 18px 0 12px;
  font-family: "Luxerie", "Times New Roman", serif;
  font-size: clamp(2.8rem, 9vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  width: fit-content;
  margin-inline: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  color: var(--shell);
  text-decoration: none;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(253, 251, 247, 0.1);
  border: 1px solid var(--border);
  flex: 0 0 42px;
}

.icon svg {
  width: 20px;
  height: 20px;
  fill: var(--shell);
}

.contact-text {
  min-width: 0;
  text-align: left;
}

.label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-item strong {
  font-size: 1rem;
  font-weight: 400;
  word-break: break-word;
}

@media (max-width: 640px) {
  .card {
    padding: 36px 20px;
  }
}
