:root {
  color-scheme: light;
  --paper: #f8f4ec;
  --ink: #201f1b;
  --muted: #696258;
  --line: #ded5c7;
  --sage: #5f745f;
  --clay: #bd6650;
  --ochre: #c99945;
  --blue: #3f6f8f;
  --white: #fffdfa;
  --shadow: 0 22px 55px rgba(42, 34, 24, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 244, 236, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 13px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 15px;
}

.nav-cta,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
}

.nav-cta,
.button.primary,
button {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 9vw, 112px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.hero h1,
.section h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(56px, 12vw, 132px);
}

.section h2 {
  font-size: clamp(34px, 5vw, 68px);
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.45;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
}

.canvas-card {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.2), rgba(255, 253, 250, 0)),
    linear-gradient(160deg, var(--sage), var(--blue) 52%, var(--ochre));
  box-shadow: var(--shadow);
}

.canvas-card span {
  position: absolute;
  border: 1px solid rgba(255, 253, 250, 0.8);
  background: rgba(255, 253, 250, 0.16);
}

.canvas-card span:nth-child(1) {
  inset: 42px 54px auto auto;
  width: 42%;
  height: 30%;
}

.canvas-card span:nth-child(2) {
  left: 48px;
  bottom: 58px;
  width: 48%;
  height: 38%;
}

.canvas-card span:nth-child(3) {
  right: 64px;
  bottom: 92px;
  width: 28%;
  height: 18%;
  background: rgba(189, 102, 80, 0.55);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

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

.feature-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.feature-card p,
.split p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.band {
  background: #eef2e6;
  border-block: 1px solid var(--line);
}

.event-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-list article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
}

.event-list span {
  color: var(--muted);
}

.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .split,
  .contact,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 300px;
  }

  .event-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

.coming-soon-page {
  min-height: 100vh;
  background: #fff;
  color: #000;
}

.coming-soon {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  min-height: 100vh;
  padding: clamp(72px, 12vh, 126px) 24px 64px;
  text-align: center;
}

.coming-soon-logo {
  display: block;
  width: clamp(190px, 18.5vw, 267px);
  height: auto;
}

.coming-soon-copy {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3vw, 36px);
  transform: translateY(-8vh);
}

.coming-soon-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0;
}

.coming-soon-copy p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

.instagram-link {
  display: inline-grid;
  grid-template-columns: auto 36px;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-top: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease;
}

.instagram-link span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 22px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff8a00 0%, #ff2d55 48%, #d000d8 100%);
  box-shadow: 0 8px 20px rgba(208, 0, 216, 0);
  transition:
    box-shadow 180ms ease,
    filter 180ms ease;
}

.instagram-link img {
  display: block;
  width: 36px;
  height: 36px;
  transition: transform 180ms ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
}

.instagram-link:hover span {
  filter: saturate(1.12) brightness(1.03);
  box-shadow: 0 10px 24px rgba(208, 0, 216, 0.22);
}

.instagram-link:hover img {
  transform: rotate(4deg) scale(1.06);
}

.instagram-link:active {
  transform: translateY(0) scale(0.98);
}

.instagram-link:focus-visible {
  outline: 2px solid #000;
  outline-offset: 6px;
}

@media (max-width: 640px) {
  .coming-soon {
    padding-top: 72px;
  }

  .coming-soon-copy {
    transform: translateY(-4vh);
  }

  .coming-soon-copy h1 {
    max-width: 330px;
  }

  .coming-soon-copy p {
    max-width: 330px;
  }

  .instagram-link {
    grid-template-columns: auto 34px;
    font-size: 15px;
  }

  .instagram-link span {
    min-height: 34px;
    padding: 0 14px;
  }

  .instagram-link img {
    width: 34px;
    height: 34px;
  }
}
