:root {
  color-scheme: light;
  --bg: #ffffff;
  --card: #ffffff;
  --ink: #2f2f4a;
  --muted: #5f6386;
  --pink: #e8b4c8;
  --indigo: #5c6fa3;
  --blush: #f8e6ed;
  --butter: #ffeed1;
  --gold: #f0b90b;
  --rule: rgba(47, 47, 74, 0.16);
  --line: rgba(47, 47, 74, 0.13);
  --shadow: 0 20px 44px -24px rgba(92, 111, 163, 0.3);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --text: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
}

a:visited {
  color: var(--indigo);
}

em {
  --sparkle-scale: 1;
  font-style: normal;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

em::before,
em::after {
  content: "";
  position: absolute;
  background-color: var(--gold);
  filter: drop-shadow(0 0 5px var(--gold));
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14.5 9.5 L24 12 L14.5 14.5 L12 24 L9.5 14.5 L0 12 L9.5 9.5 Z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14.5 9.5 L24 12 L14.5 14.5 L12 24 L9.5 14.5 L0 12 L9.5 9.5 Z'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
  animation: em-sparkle 1.8s ease-in-out infinite;
}

em::before {
  width: 26px;
  height: 26px;
  top: -16px;
  right: -28px;
  animation-delay: 0.2s;
}

em::after {
  width: 17px;
  height: 17px;
  bottom: 8px;
  right: -14px;
  animation-delay: 1s;
}

@keyframes em-sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(calc(0.4 * var(--sparkle-scale))) rotate(0deg);
  }
  20%,
  70% {
    opacity: 1;
    transform: scale(var(--sparkle-scale)) rotate(25deg);
  }
}

em:hover {
  --sparkle-scale: 1.6;
}

em:hover::before,
em:hover::after {
  animation-duration: 0.7s;
}

/* Nav */

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 28px;
  padding-bottom: 8px;
}

.mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 40;
  font-size: 28px;
  color: var(--indigo);
  text-decoration: none;
  line-height: 1;
}

.mark:visited {
  color: var(--indigo);
}

.links {
  display: flex;
  gap: 4px;
  margin: 0 -10px;
}

.links a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  padding: 12px 10px;
  line-height: 20px;
}

.links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero */

.hero {
  padding-top: 56px;
  padding-bottom: 56px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-size: clamp(44px, 8vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  text-wrap: balance;
  color: var(--indigo);
}

.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
}

.bubble-cta {
  margin: 20px 0 0;
}

.bubble-cta .btn {
  display: block;
  width: 100%;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signup-input {
  flex: 1;
  min-width: 180px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.signup-input:focus {
  outline: 2px solid var(--indigo);
  outline-offset: 1px;
}

.signup-form .btn {
  display: inline-block;
  width: auto;
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.lede {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 30em;
}

/* Bubble cards */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 26px 28px;
}

/* Contact form */

.contact-form,
.contact-thanks {
  max-width: 32em;
  margin-top: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--indigo);
  outline-offset: 1px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .cta {
  margin: 4px 0 0;
}

.contact-form .btn {
  border: 0;
  cursor: pointer;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-thanks p {
  color: var(--muted);
}

.hero-info-card {
  margin: 0;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.facts > div {
  margin: 0;
}

.facts-full {
  grid-column: 1 / -1;
}

.facts dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}

.facts dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "SOFT" 60, "opsz" 32;
  font-size: 25px;
  line-height: 1.15;
}

.facts dd span {
  display: block;
  font-family: var(--text);
  font-weight: 400;
  font-size: 15px;
  color: var(--muted);
  margin-top: 3px;
}

.soon {
  margin: 0;
}

.soon-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
}

.soon-text {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.cta {
  margin: 0 0 16px;
}

.btn {
  display: inline-block;
  background: var(--pink);
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  padding: 17px 28px;
  border-radius: 10px;
  line-height: 1.2;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--indigo);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 2px solid var(--ink);
  padding: 13px 26px;
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff !important;
}

.fine {
  margin: 24px 0 0;
  font-size: 15px;
  color: var(--muted);
  max-width: 36em;
}

/* Photo slots: real photos go here once available. */

.photo {
  margin: 0;
  border-radius: 6px;
  background: var(--card);
  border: 1px solid var(--rule);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.photo.portrait {
  height: 100%;
  min-height: 375px;
}

.photo.square {
  aspect-ratio: 1 / 1;
}

.photo-fill {
  padding: 0;
  overflow: hidden;
}

.photo-fill img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */

.band {
  padding: 64px 0;
}

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

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

section.wrap {
  padding-top: 0;
  padding-bottom: 56px;
}

section.wrap::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--rule);
  margin-bottom: 56px;
}

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 72;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 20px;
  text-wrap: balance;
}

h3 {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "SOFT" 80, "opsz" 24;
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 6px;
}

p {
  margin: 0 0 1em;
}

.newsletter p,
.parties .intro {
  max-width: 34em;
}

.about-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
  align-items: start;
}

.video-embed {
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
  max-width: 640px;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.prose {
  max-width: 38em;
}

.prose a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.intro {
  max-width: 38em;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-top: 32px;
  padding: 32px;
}

.grid2 p {
  font-size: 16px;
}

.grid2 p:last-child {
  margin-bottom: 0;
}

.footer-band {
  background: var(--ink);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-band .mark {
  font-size: 20px;
  color: #fff;
}

.footer-wrap nav {
  display: flex;
  gap: 20px;
}

.footer-wrap nav a {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
  }
  .links {
    margin-left: -10px;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  h1 {
    margin-bottom: 24px;
  }
  .hero-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-row .photo {
    max-width: 300px;
    margin: 0 auto;
  }
  .lede {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .facts dd {
    font-size: 22px;
  }
  .btn {
    display: block;
    text-align: center;
  }
  .band {
    padding: 40px 0;
  }
  section.wrap {
    padding-bottom: 40px;
  }
  section.wrap::before {
    margin-bottom: 40px;
  }
  h2 {
    font-size: 30px;
  }
  .about-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-row .photo {
    max-width: 260px;
  }
  .grid2 {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px 24px;
  }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
