@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,600&display=swap');

:root {
  --navy: #20345d;
  --text: #2e3339;
  --muted: #6d747c;
  --gold: #c5a244;
  --cream: #f6f4ee;
  --rule: #e9e6de;
  --page: #ffffff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header {
  height: 112px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 230px;
  max-width: min(230px, 72vw);
  height: auto;
}

.content {
  width: min(770px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 74px 0 34px;
}

.gold-line {
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  margin-top: 0;
  letter-spacing: -.015em;
}

h1 {
  font-size: clamp(36px, 4.2vw, 46px);
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 600;
}

h2 {
  font-size: clamp(28px, 3.3vw, 36px);
  line-height: 1.18;
  margin-bottom: 22px;
  font-weight: 600;
}

p {
  margin: 0 0 20px;
}

.signature {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.firm {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 56px 0;
}

.notice {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 44px 48px 36px;
  border-radius: 2px;
}

.notice .eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.notice strong,
.contact strong {
  color: var(--navy);
  font-weight: 600;
}

.contact {
  padding-bottom: 10px;
}

.email-link {
  display: inline-flex;
  gap: 18px;
  align-items: baseline;
  margin-top: 10px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(32,52,93,.35);
  padding-bottom: 2px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
}

.email-link:hover {
  border-bottom-color: var(--navy);
}

.email-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

footer {
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 28px 0 40px;
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
    line-height: 1.62;
  }

  .site-header {
    height: 88px;
  }

    .brand-logo {
      max-width: min(170px, 60vw);
    }

  .content {
    width: min(100% - 32px, 770px);
  }

  .section {
    padding-top: 50px;
  }

  .notice {
    padding: 30px 24px 24px;
  }

  hr {
    margin: 42px 0;
  }
}
