:root {
  --navy: #0b1b3f;
  --gold: #d4a24c;
  --cream: #f9f7f2;
  --ink: #10203f;
  --soft-blue: #e5edf8;
  --white: #ffffff;
}

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

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

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

.status-text {
  font-weight: 700;
  opacity: 0.8;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-block {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", serif;
}

.logo-block .label {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-block .title {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 600;
}

.nav-links a {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, border 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, rgba(11, 27, 63, 0.08), transparent);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(11, 27, 63, 0.2);
}

.btn.outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 27, 63, 0.2);
}

.hero-card {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(11, 27, 63, 0.25);
}

.hero-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.hero-visual .sign {
  border: 3px solid var(--gold);
}

.events {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
}

.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  max-width: 620px;
}

.event-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.event-grid article {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-grid h3 {
  margin-bottom: 0.5rem;
}

.meta {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.news {
  padding: 4rem 0;
}

.news-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.news article {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(16, 32, 63, 0.08);
}

.news a {
  color: var(--navy);
  font-weight: 700;
}

.about {
  padding: 4rem 0 5rem;
  background: var(--soft-blue);
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.about ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid rgba(11, 27, 63, 0.1);
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-note {
  text-align: center;
  margin-top: 2rem;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
