:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #171717;
  --secondary: #595959;
  --rule: #dedede;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 6px; }
.page { max-width: 1096px; margin: 0 auto; padding: 0 64px; }
header { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 38px 0; border-bottom: 1px solid var(--rule); }
.wordmark { font-size: 20px; font-weight: 700; letter-spacing: -.6px; text-decoration: none; }
.wordmark span { font-weight: 400; }
.location { font-size: 12px; color: var(--secondary); }
main { padding-top: 66px; }
.notice { font-size: 13px; color: var(--secondary); margin: 0 0 29px; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(48px, 6.5vw, 76px); line-height: 1.08; letter-spacing: -3px; margin: 0 0 31px; }
.introduction { max-width: 650px; }
.introduction p { font-size: 16px; line-height: 1.8; margin: 0 0 15px; color: var(--secondary); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 48px; padding: 35px 0 38px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 29px; font-weight: 400; line-height: 1.25; letter-spacing: -.7px; margin: 0 0 13px; }
.contact p { font-size: 13px; line-height: 1.8; color: var(--secondary); margin: 0; }
.contact-links { display: flex; align-items: flex-start; flex-direction: column; gap: 13px; padding-top: 3px; }
.telephone { font-size: 27px; letter-spacing: -.8px; text-decoration: none; }
.email { font-size: 15px; text-decoration-thickness: 1px; text-underline-offset: 5px; overflow-wrap: anywhere; }
.contact-links a:hover { color: #000000; }
address { font-size: 13px; font-style: normal; line-height: 1.7; color: var(--secondary); margin-top: 7px; }
.services { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 35px; padding: 28px 0 34px; }
.services p { font-size: 12px; line-height: 1.75; color: var(--secondary); margin: 0; }
.services strong { display: block; color: var(--ink); font-size: 13px; margin-bottom: 6px; font-weight: 600; }
footer { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--rule); padding: 23px 0 30px; font-size: 11px; color: var(--secondary); }
@media (max-width: 650px) {
  .page { padding: 0 25px; }
  header { padding: 27px 0; }
  .wordmark { font-size: 18px; }
  .location { display: none; }
  main { padding-top: 42px; }
  .notice { font-size: 12px; margin-bottom: 24px; }
  h1 { font-size: clamp(43px, 10.5vw, 64px); letter-spacing: -1.8px; margin-bottom: 26px; }
  .introduction p { font-size: 15px; }
  .contact { grid-template-columns: 1fr; gap: 25px; margin-top: 33px; padding: 27px 0 30px; }
  .services { grid-template-columns: 1fr; gap: 19px; padding: 26px 0; }
  .services strong { margin-bottom: 2px; }
  footer { flex-direction: column; gap: 8px; }
}
