:root {
  color-scheme: light;
  --bg: #f8faf8;
  --ink: #1f2d2a;
  --muted: #62716c;
  --line: #d8e0dc;
  --panel: #ffffff;
  --sage: #52695e;
  --sage-dark: #40564b;
  --rose: #b78078;
  --rose-soft: #f4e7e4;
  --amber-soft: #fff4d6;
  --amber-line: #ead18b;
  --shadow: 0 20px 50px rgb(31 45 42 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  margin: 0;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgb(183 128 120 / 45%);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgb(248 250 248 / 94%);
  border-bottom: 1px solid rgb(31 45 42 / 9%);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 18px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

nav a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  padding: 8px 9px;
  text-decoration: none;
}

nav a[aria-current="page"] {
  background: var(--rose-soft);
  color: var(--ink);
}

main {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 18px 48px;
}

main:focus {
  outline: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
  padding: 42px 0 22px;
}

.eyebrow {
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 31px;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
  margin: 14px 0 0;
}

.lead {
  font-size: 18px;
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 720;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  text-decoration: none;
}

.button-primary {
  background: var(--sage);
  color: #fff;
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
}

.button.disabled {
  background: #d8e0dc;
  color: #52615d;
  cursor: not-allowed;
}

.hero-panel,
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 18px;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

dd {
  font-size: 16px;
  font-weight: 650;
  margin: 2px 0 0;
}

.page-header {
  border-bottom: 1px solid var(--line);
  padding: 34px 0 24px;
}

.section {
  margin-top: 18px;
  padding: 8px 0 18px;
}

.grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.grid-2,
.grid-3 {
  grid-template-columns: minmax(0, 1fr);
}

.card {
  padding: 18px;
}

.card h3,
.card p {
  margin: 0;
}

.card p {
  margin-top: 10px;
}

.note {
  background: var(--rose-soft);
  border: 1px solid rgb(183 128 120 / 28%);
  border-radius: 8px;
  color: var(--ink);
  margin-top: 18px;
  padding: 14px 16px;
}

.note.warning {
  background: var(--amber-soft);
  border-color: var(--amber-line);
}

.spaced-heading {
  margin-top: 28px;
}

.status-list {
  color: var(--muted);
  margin: 16px 0 0;
  padding-left: 20px;
}

.status-list li + li {
  margin-top: 6px;
}

.calendar-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 18px;
  overflow: hidden;
}

.calendar-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.fine-print {
  font-size: 13px;
}

.contact-table {
  border-collapse: collapse;
  margin-top: 8px;
  width: 100%;
}

.contact-table th,
.contact-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
}

.contact-table th {
  color: var(--ink);
  font-size: 14px;
  padding-right: 18px;
  width: 94px;
}

.contact-table td {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 18px 30px;
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  margin: 0;
}

.footer-links {
  justify-content: center;
  margin-top: 12px;
}

.footer-links a {
  font-size: 13px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  nav a {
    padding-inline: 8px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .button {
    width: 100%;
  }
}

@media (min-width: 800px) {
  .site-header {
    padding: 16px 28px;
  }

  main {
    padding-inline: 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
    padding-top: 56px;
  }

  h1 {
    font-size: 64px;
  }

  .page-header {
    padding-top: 46px;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .calendar-frame {
    aspect-ratio: 16 / 9;
  }
}
