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

:root {
  --navy: #0f1f3d;
  --navy-mid: #1a2f52;
  --teal: #3d9b9b;
  --teal-light: #5bb8b8;
  --gold: #c9a227;
  --cream: #f7f5f0;
  --text: #e8ecf2;
  --text-muted: #9aa8bc;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-hover: rgba(61, 155, 155, 0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100dvh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
}

/* subtle background pattern */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(61, 155, 155, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 162, 39, 0.08), transparent),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  z-index: -1;
}

/* header / logo */
.header {
  margin-bottom: 3rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* main content */
.main {
  flex: 1;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-light);
  border: 1px solid rgba(91, 184, 184, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.title span {
  color: var(--teal-light);
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 2.5rem;
}

/* contact section */
.contact-heading {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

a.contact-card:hover,
a.contact-card:focus-visible {
  background: var(--card-hover);
  border-color: rgba(91, 184, 184, 0.4);
  transform: translateY(-1px);
  outline: none;
}

a.contact-card:focus-visible {
  box-shadow: 0 0 0 2px var(--navy), 0 0 0 4px var(--teal);
}

.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(61, 155, 155, 0.2);
  color: var(--teal-light);
  border-radius: 0.5rem;
}

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

a.contact-card:hover .contact-value,
a.contact-card:focus-visible .contact-value {
  color: var(--teal-light);
}

.contact-value.secondary {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.contact-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* footer */
.footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-meta {
  margin-top: 0.35rem;
  font-size: 0.72rem !important;
  opacity: 0.75;
}

@media (min-width: 480px) {
  .page {
    padding: 3rem 2rem 3rem;
  }

  .header {
    margin-bottom: 4rem;
  }
}
