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

:root {
  color-scheme: light;
  font-family: "Open Sans", Arial, sans-serif;
  color: #2b2b2b;
  background: #ffffff;
  line-height: 1.7;
}

body {
  min-height: 100vh;
  background: #fffdf9;
}

a {
  color: #7a1f2b;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid #7a1f2b;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  transform: translateY(-160%);
  background: #ffffff;
  border: 2px solid #7a1f2b;
  padding: 10px 14px;
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 5vw, 64px);
  border-bottom: 1px solid #e7ded5;
  background: #ffffff;
}

header img {
  display: block;
  width: auto;
  height: 54px;
}

header a {
  font-size: 14px;
  font-weight: 600;
}

main {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.eyebrow {
  color: #7a1f2b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  margin: 12px 0 20px;
  font-size: clamp(42px, 7vw, 64px);
}

h2 {
  margin: 42px 0 12px;
  font-size: 30px;
}

p,
li {
  color: #45413e;
}

p {
  margin-bottom: 16px;
  text-wrap: pretty;
}

ul {
  margin: 0 0 20px 24px;
}

li {
  margin-bottom: 8px;
}

.updated {
  margin-bottom: 34px;
  color: #66605b;
  font-size: 14px;
}

.contact-box {
  margin-top: 44px;
  padding: 24px;
  border-left: 4px solid #7a1f2b;
  background: #faf6ef;
}

footer {
  padding: 28px 24px;
  border-top: 1px solid #e7ded5;
  color: #655f5a;
  background: #ffffff;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 560px) {
  header {
    align-items: flex-start;
    padding: 16px 20px;
  }

  main {
    width: min(100% - 40px, 760px);
    padding-top: 54px;
  }
}
