:root {
  --ink: #dad3a0;
  --muted: #dad3a0;
  --red: #dad3a0;
  --link: #dad3a0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-locked body > :not(.password-gate) {
  visibility: hidden;
}

body {
  margin: 0;
  background: #3b5a2f;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  line-height: 1.24;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #3b5a2f;
  color: var(--ink);
}

.password-card {
  width: min(520px, 100%);
  text-align: center;
}

.password-card h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 7vw, 76px);
  line-height: 1;
  text-transform: uppercase;
}

.password-card p {
  margin: 0 0 22px;
}

.password-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.password-card input {
  width: 100%;
  min-height: 48px;
  margin-bottom: 16px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 8px 12px;
  text-align: center;
}

.password-card button {
  min-height: 48px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #3b5a2f;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 8px 28px;
  text-transform: uppercase;
}

.password-error {
  min-height: 1.4em;
  margin-top: 18px;
}

.registry-link {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
  text-transform: uppercase;
}

.top-nav {
  width: min(1320px, calc(100% - 48px));
  margin: 88px auto 72px;
  color: var(--ink);
  font-size: clamp(16px, 1.5vw, 27px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.top-nav a {
  display: inline-block;
  color: var(--ink);
  padding: 8px 4px;
}

.top-nav .muted-link {
  color: var(--muted);
}

.top-nav span {
  color: var(--ink);
}

main {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-page main {
  display: grid;
  min-height: calc(100svh - 180px);
  place-items: center;
  padding: 32px;
}

.opening-link {
  display: block;
  width: min(1752px, 100%);
}

.opening-link img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-intro {
  width: min(1752px, calc(100% - 96px));
  margin: 0 auto 88px;
  text-align: center;
}

.photo-intro img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.content-section {
  width: min(2510px, calc(100% - 220px));
  margin: 0 auto 68px;
}

.content-section h1,
.content-section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
  text-align: left;
}

.guide-section h1 {
  color: var(--red);
  text-align: center;
}

.subhead {
  margin-top: -2px;
  text-align: center;
}

.content-section h2,
.content-section h3 {
  margin: 42px 0 4px;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.08;
}

.content-section h3 span {
  font-weight: 800;
}

.content-section p {
  margin: 0 0 28px;
}

.content-section ul {
  margin: 0 0 38px 46px;
  padding-left: 22px;
  list-style-type: square;
}

.content-section li {
  margin: 5px 0;
  padding-left: 6px;
}

.weekend-day {
  margin: 0 0 34px;
}

.weekend-day h2 {
  margin-top: 0;
}

.weekend-day p {
  margin-bottom: 8px;
}

blockquote {
  margin: 46px auto 0;
  max-width: 980px;
  font-size: clamp(22px, 2vw, 34px);
  font-style: italic;
  text-align: center;
}

@media (max-width: 900px) {
  body {
    font-size: 18px;
  }

  .top-nav {
    width: min(680px, calc(100% - 32px));
    margin: 40px auto 36px;
  }

  .photo-intro {
    width: calc(100% - 32px);
    margin-bottom: 48px;
  }

  .content-section {
    width: calc(100% - 36px);
  }

  .content-section {
    margin-bottom: 48px;
  }

  .content-section ul {
    margin-left: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .top-nav {
    font-size: 16px;
    line-height: 1.45;
  }

  .top-nav span {
    color: var(--muted);
  }
}
