* {
  box-sizing: border-box;
}

:root {
  --navy: #071d36;
  --navy-soft: #123150;
  --gold: #b68a42;
  --gold-light: #d0ad70;
  --cream: #f5f1e9;
  --white: #ffffff;
  --text: #17283c;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(182, 138, 66, 0.12), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(7, 29, 54, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.background-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.shape-one {
  width: 420px;
  height: 420px;
  top: -200px;
  right: -120px;
  border: 1px solid rgba(182, 138, 66, 0.22);
}

.shape-two {
  width: 520px;
  height: 520px;
  bottom: -300px;
  left: -180px;
  border: 1px solid rgba(7, 29, 54, 0.16);
}

.card {
  width: min(920px, 100%);
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(182, 138, 66, 0.28);
  box-shadow: 0 28px 80px rgba(7, 29, 54, 0.14);
  padding: 54px 70px 46px;
}

.logo {
  display: block;
  width: min(650px, 100%);
  max-height: 340px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 12px 0 25px;
}

.divider span {
  width: 72px;
  height: 1px;
  background: var(--gold);
}

.divider i {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.intro {
  max-width: 670px;
  margin: 24px auto;
  font-size: 17px;
  line-height: 1.75;
  color: #4d5c6b;
}

.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 25px auto 34px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 11px;
}

.services span:not(:last-child)::after {
  content: "•";
  color: var(--gold);
  margin-left: 22px;
}

.contact-label {
  margin: 0 0 13px;
  font-size: 14px;
  color: #687583;
}

.email-button {
  display: inline-block;
  padding: 15px 23px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  transition: 0.2s ease;
}

.email-button:hover,
.email-button:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.claim {
  margin: 35px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-size: 13px;
}

@media (max-width: 700px) {
  .page {
    padding: 18px 12px;
  }

  .card {
    padding: 35px 20px 32px;
  }

  .logo {
    max-height: 255px;
  }

  .intro {
    font-size: 15px;
  }

  .services {
    display: grid;
    gap: 8px;
  }

  .services span::after {
    display: none;
  }

  .email-button {
    width: 100%;
    font-size: 10px;
    padding: 15px 10px;
  }

  .claim {
    line-height: 1.6;
  }
}
