:root {
  --background: #f5f6f7;
  --card: #fbfaf9;
  --blue: #0b2f4a;
  --muted: #566570;
  --border: rgba(11, 47, 74, 0.12);
}

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

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 55%),
    var(--background);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--blue);
}

.container {
  width: 100%;
  max-width: 1040px;
  min-height: 82vh;

  background: var(--card);

  border: 1px solid var(--border);

  box-shadow:
    0 12px 32px rgba(11, 47, 74, 0.06),
    0 2px 8px rgba(11, 47, 74, 0.03);

  padding: 64px 56px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  text-align: center;
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.logo img {
  width: min(440px, 78vw);
  height: auto;
  object-fit: contain;
}

.content {
  margin-top: 18px;
}

.family-office {
  color: var(--muted);

  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;

  margin-bottom: 16px;
}

.tagline {
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--muted);

  max-width: 760px;
  margin: 0 auto;
  text-wrap: balance;
}

.contact {
  margin-top: 64px;
}

.contact h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.contact p {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
}

.contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 47, 74, 0.25);
  padding-bottom: 1px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.contact a:hover,
footer a:hover {
  opacity: 0.7;
}

footer {
  margin-top: 72px;
  padding-top: 26px;

  border-top: 1px solid rgba(11, 47, 74, 0.12);

  display: flex;
  justify-content: space-between;
  gap: 20px;

  color: var(--muted);

  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.5;

  text-align: left;
}

footer p {
  margin-bottom: 6px;
}

footer nav {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer nav a {
  letter-spacing: 0.04em;
}

.disclaimer-page {
  justify-content: center;
  gap: 28px;
}

.disclaimer-page h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
}

.disclaimer-page p {
  max-width: 720px;
  margin: 0 auto;

  color: var(--muted);

  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.disclaimer-page a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 47, 74, 0.25);
  padding-bottom: 1px;
}

@media (max-width: 768px) {
  body {
    padding: 14px;
  }

  .container {
    padding: 40px 26px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer nav {
    justify-content: center;
  }
}
