:root {
  --ink: #182327;
  --muted: #5e6a6d;
  --paper: #fff9f2;
  --foam: #e7f5f2;
  --sea: #087b83;
  --coral: #e14f4f;
  --sun: #f6bd60;
  --plum: #5f315f;
  --line: rgba(24, 35, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--sea);
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

nav a:hover,
nav a.active {
  color: var(--sea);
}

nav a.active {
  border-color: var(--sea);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(780px, 86vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0e2b30;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 31, 36, 0.74), rgba(10, 31, 36, 0.18) 64%),
    linear-gradient(0deg, rgba(10, 31, 36, 0.7), rgba(10, 31, 36, 0.02) 45%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: clamp(34px, 7vw, 84px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.page-title {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--sun);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
}

section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.page-section {
  min-height: calc(100vh - 100px);
  align-content: center;
}

.band {
  background: var(--foam);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.intro-grid,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.intro-grid p,
.split-copy p,
.contact p,
.music p {
  font-size: 1.08rem;
  color: #334044;
}

.stats {
  display: grid;
  gap: 12px;
}

.stats span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.stats strong {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.teaser {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.teaser:hover {
  border-color: rgba(8, 123, 131, 0.5);
  box-shadow: 0 18px 46px rgba(24, 35, 39, 0.12);
  transform: translateY(-3px);
}

.teaser span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.details {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.details div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

dt {
  color: var(--sea);
  font-weight: 900;
}

dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.portrait {
  margin: 0;
}

.portrait img,
.archive-grid img,
.photo-strip img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(24, 35, 39, 0.14);
}

.portrait img {
  height: min(620px, 78vh);
  object-position: center top;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.event-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event,
.archive-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.event.featured {
  color: #fff;
  background: var(--sea);
}

.event.featured p,
.event.featured .date {
  color: rgba(255, 255, 255, 0.82);
}

.date {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-weight: 900;
}

.archive-grid article {
  padding: 0;
  overflow: hidden;
}

.archive-grid img {
  height: 300px;
  border-radius: 0;
  box-shadow: none;
}

.archive-grid h3,
.archive-grid p {
  padding-inline: 20px;
}

.archive-grid h3 {
  margin-top: 18px;
}

.archive-grid p {
  padding-bottom: 20px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding-left: 18px;
  border-left: 4px solid var(--sun);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.news-card div {
  padding: 22px;
}

.news-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 35, 39, 0.12);
}

.signup-form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.video-wrap {
  aspect-ratio: 16 / 9;
  max-width: 960px;
  overflow: hidden;
  border-radius: 8px;
  background: #0e2b30;
  box-shadow: 0 24px 70px rgba(24, 35, 39, 0.16);
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.photo-strip img {
  height: 390px;
}

.photo-strip img:nth-child(2) {
  height: 470px;
}

.contact {
  color: #fff;
  background: var(--plum);
}

.contact .eyebrow {
  color: var(--sun);
}

.contact p {
  color: rgba(255, 255, 255, 0.82);
}

address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

address a {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

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

  nav {
    justify-content: flex-start;
  }

  .intro-grid,
  .split,
  .contact,
  .event-grid,
  .archive-grid,
  .news-grid,
  .news-card,
  .field-grid,
  .teaser-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    padding-top: 120px;
  }

  .photo-strip img,
  .photo-strip img:nth-child(2),
  .archive-grid img {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .brand {
    white-space: normal;
  }

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

  .button {
    width: 100%;
  }
}
