:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #061f19;
  color: #f7f0dc;
  line-height: 1.65;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #061f19;
}

a { color: #f3c55f; }

header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(243, 197, 95, 0.25);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand strong, .brand span { display: block; }
.brand strong { font-family: Georgia, serif; font-size: 20px; }
.brand span { color: #b9c7bf; font-size: 11px; letter-spacing: 0.08em; }

.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #f3c55f;
  border-radius: 6px;
  background: #af2925;
  color: #fff8e8;
  font-family: Georgia, serif;
  font-weight: 800;
}

nav { display: flex; gap: 18px; }
nav a { color: #f7f0dc; text-decoration: none; font-size: 14px; }

main { max-width: 1080px; margin: 0 auto; padding: 0 28px 64px; }

.intro {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 -28px;
  padding: 40px 28px;
  background-image: url("assets/lobby-background.png");
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 100vmax rgba(3, 24, 18, 0.68);
  clip-path: inset(0 -100vmax);
  border-bottom: 1px solid rgba(243, 197, 95, 0.25);
}

.eyebrow { color: #f3c55f; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; }
h1 { max-width: 760px; margin: 8px 0; font-family: Georgia, serif; font-size: clamp(42px, 8vw, 76px); line-height: 1.08; }
.intro > p:not(.eyebrow) { max-width: 600px; color: #c8d2cc; font-size: 18px; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  margin-top: 16px;
  padding: 0 20px;
  border-radius: 6px;
  background: #af2925;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.content { max-width: 760px; padding: 56px 0 16px; }
.content h2 { margin: 0 0 28px; font-family: Georgia, serif; font-size: 34px; }
.content h3 { margin: 28px 0 6px; color: #f3c55f; font-size: 17px; }
.content p { margin: 0 0 14px; color: #d4ddd8; }
.content ul { margin: 8px 0 18px; padding-left: 22px; color: #d4ddd8; }
.content li { margin: 7px 0; }
.date { color: #96a9a0 !important; font-size: 14px; }
.divider { height: 1px; margin: 52px 0; background: rgba(243, 197, 95, 0.25); }
.english { border-top: 1px solid rgba(243, 197, 95, 0.25); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 28px 40px;
  border-top: 1px solid rgba(243, 197, 95, 0.25);
  color: #96a9a0;
  font-size: 13px;
}

@media (max-width: 620px) {
  header, footer { align-items: flex-start; flex-direction: column; }
  nav { flex-wrap: wrap; }
  h1 { font-size: 42px; }
  .intro { min-height: 340px; }
}
