:root {
  --background: #f6f0e7;
  --surface: #fffdf8;
  --text: #201b18;
  --muted: #6f665e;
  --border: #d8ccbe;
  --accent: #641417;
  --accent-hover: #460d0f;
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  min-height: 84px;
  padding: 12px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(246, 240, 231, 0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand { display: block; width: 230px; }
.brand img { width: 100%; }

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a:focus { color: var(--accent); }

.hero { padding: 90px 40px 110px; }

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: center;
}

.eyebrow,
.section-label,
.event-type {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2 {
  margin-top: 0;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-logo { display: flex; justify-content: center; }
.hero-logo img {
  width: min(100%, 460px);
  border-radius: 50%;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.button:hover,
.button:focus { background: var(--accent-hover); }

.section {
  padding: 110px 40px;
  border-top: 1px solid var(--border);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about h2 {
  max-width: 970px;
  margin-bottom: 34px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.events { background: var(--surface); }

.event-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 500px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--background);
}

.event-copy {
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.event-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
}

.event-copy > p:not(.event-type) {
  max-width: 590px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { margin-left: 7px; }

.event-art {
  padding: 42px;
  background: #eaded1;
  display: grid;
  place-items: center;
}

.event-art img {
  width: min(100%, 420px);
  border-radius: 50%;
}

.site-footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.site-footer p { margin: 6px 0 0; color: var(--muted); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}
.footer-links a { color: var(--muted); text-decoration: none; }


.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    line-height: 1;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.instagram-icon circle:last-child {
    fill: currentColor;
    stroke: none;
}

.instagram-link:hover,
.instagram-link:focus {
    color: var(--accent);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .hero-inner,
  .event-card { grid-template-columns: 1fr; }

  .hero-logo { margin-top: 20px; }
  .hero-logo img { width: min(100%, 360px); }
}

@media (max-width: 700px) {
  .site-header {
    padding: 16px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand { width: 210px; }
  .site-nav { gap: 18px; }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  h1 { font-size: clamp(3.5rem, 17vw, 6rem); }

  .event-copy { padding: 38px 26px; }
  .event-art { padding: 28px; }

  .site-footer {
    padding: 40px 20px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
