:root {
  --paper: #fefdfa;
  --ink: #384747;
  --blue: #6ea5c0;
  --line: rgba(110, 165, 192, 0.38);
  --soft-line: rgba(110, 165, 192, 0.18);
  --white: #ffffff;
  font-family: Inter, "New Kansas", ui-serif, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--blue);
}

body {
  font-family: Inter, "Inter Placeholder", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  border-bottom: 1px solid var(--soft-line);
  padding: 18px 0;
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 184px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.register {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
}

main {
  flex: 1;
}

.hero {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
  text-align: center;
}

.hero-logo {
  width: min(922px, 100%);
  margin: 0 auto 38px;
  display: block;
}

.verse {
  max-width: 920px;
  margin: 0 auto;
  font-family: "New Kansas", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.reference {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

.messages {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 96px;
}

.section-label {
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  padding: 18px 24px;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.26);
}

.embed-frame {
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.28);
}

.embed-frame iframe {
  width: 100%;
  max-width: 660px;
  height: 450px;
  margin: 0 auto;
  display: block;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}

.simple-page {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.simple-page h1 {
  margin: 0 0 18px;
  font-family: "New Kansas", Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1;
  color: var(--ink);
}

.simple-page p {
  margin: 0;
  max-width: 620px;
  font-size: 22px;
  line-height: 1.6;
}

.note-box {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  font-size: 18px;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--soft-line);
  padding: 24px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

@media (max-width: 760px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding: 70px 0 52px;
  }

  .messages {
    margin-bottom: 64px;
  }

  .embed-frame {
    padding: 12px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
