:root {
  --font-body: "Manrope", "Open Sans", system-ui, sans-serif;
  --font-head: "Open Sans", system-ui, sans-serif;
  --ink: #0a0a0a;
  --paper: #fefefe;
  --muted: #5b5b5b;
  --line: #e6e8e9;
  --accent: #3452ff;
  --accent-alt: #ff1053;
  --accent-cool: #2ac4ea;
  --insight: #9fb1bc;
  --action: #4b65c5;
  --creatrix-ink: #252a2f;
  --gold: #b9922e;
  --maxw: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--action);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--action);
  margin: 0 0 0.6em;
}

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--gold);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  background: #a37f26;
  border-color: #a37f26;
  color: var(--ink);
  text-decoration: none;
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-light:hover {
  background: transparent;
  color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(254, 254, 254, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  height: 51px;
  width: auto;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.98rem;
}

.nav a:hover {
  color: var(--ink);
}

.section {
  padding: 84px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-dark .eyebrow {
  color: var(--insight);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 200px 0 48px;
  color: var(--paper);
  background-color: #262626;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/img/hero-bg.jpg") center 62% / cover no-repeat;
  transform-origin: center;
  animation: hero-zoom-out 2.2s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0) 62%);
}

@keyframes hero-zoom-out {
  from {
    transform: scale(1.14);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after {
    animation: none;
  }
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.hero-title {
  text-align: left;
}

.hero-desc {
  text-align: right;
  padding-bottom: 6px;
}

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

.hero-page {
  min-height: 34vh;
  padding: 130px 0 40px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.hero .lead {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  max-width: 640px;
  color: #e6e8e9;
}

.statement {
  max-width: 860px;
}

h2.statement {
  font-size: clamp(2.2rem, 6.2vw, 3.9rem);
  line-height: 1.12;
  max-width: 880px;
}

.statement .hl {
  position: relative;
  display: inline-block;
  color: var(--action);
}

.squiggle {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  margin-top: 2px;
  color: var(--action);
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature {
  position: relative;
  overflow: hidden;
  min-height: 67vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background-color: var(--paper);
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #2d2d2d;
  opacity: 0.7;
  transform-origin: center;
}

.features.grow .feature::after,
.features.grow .feature::before {
  animation: feature-grow 1.3s ease both;
}

@keyframes feature-grow {
  from {
    transform: scale(0.75);
  }
  to {
    transform: scale(1);
  }
}

.feature-inner {
  position: relative;
  z-index: 2;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.feature h3 {
  margin: 0;
}

.feature .eyebrow {
  color: var(--insight);
  margin: 0;
}

.card-a::after {
  background-image: url("/assets/img/feature-musicians.jpg");
}

.card-b::after {
  background-image: url("/assets/img/feature-music.jpg");
}

.btn-ghost {
  align-self: center;
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border: 2px solid var(--paper);
  color: var(--paper);
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.bio {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.bio img {
  border-radius: 12px;
  position: sticky;
  top: 100px;
}

.bio h2 {
  margin-top: 0;
}

.tag {
  font-family: var(--font-head);
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: -0.3em;
}

.phase-title {
  color: var(--action);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  font-family: var(--font-head);
  font-weight: 600;
  min-height: 1.4em;
}

.form-status.ok {
  color: #1a7f4b;
}

.form-status.err {
  color: var(--accent-alt);
}

.site-footer {
  background: #f8f8f8;
  color: var(--muted);
  padding: 56px 0 40px;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--ink);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-head);
  font-weight: 600;
}

.powered {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--creatrix-ink);
}

.site-footer .powered {
  color: var(--creatrix-ink);
}

.creatrix-word {
  font-weight: 500;
  margin-right: 10px;
}

.powered .powered-link {
  color: var(--action);
}

.powered .powered-link:hover {
  color: var(--action);
  text-decoration: underline;
}

.powered img {
  height: 40px;
  width: 40px;
  margin-right: 5px;
  transform: translateY(2px);
}

.copyright {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--creatrix-ink);
}

@media (max-width: 800px) {
  body {
    font-size: 17px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 44vh;
  }

  .feature-inner {
    padding: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-title,
  .hero-desc {
    text-align: left;
  }

  .bio {
    grid-template-columns: 1fr;
  }

  .bio img {
    position: static;
    max-width: 260px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 78vh;
    padding: 140px 0 56px;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.8rem;
  }
}
