:root {
  --bg: #f3eff9;
  --card: #ffffff;
  --text: #2f2c38;
  --muted: #6f6a7d;
  --accent: #7c4dff;
  --accent-2: #b169ff;
  --accent-soft: #ece3ff;
  --placeholder: #cdd2d6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, #e8dfff 0%, var(--bg) 30%, var(--bg) 100%);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
}

.site-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.site-header {
  text-align: center;
  margin-bottom: 44px;
}

.brand {
  margin: 0;
  font-family: "Yellowtail", cursive;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--accent);
  text-shadow: 0 6px 20px rgba(124, 77, 255, 0.2);
}

.tagline {
  margin: 14px 0 18px;
  letter-spacing: 0.32rem;
  font-size: clamp(1.05rem, 2.1vw, 2rem);
  text-transform: uppercase;
}

.header-stripe {
  width: min(880px, 92%);
  height: 7px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
  margin: 58px 0;
  background: var(--card);
  box-shadow: 0 14px 44px rgba(40, 32, 62, 0.08);
  overflow: hidden;
}

.section.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.text-panel {
  padding: clamp(30px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section:nth-of-type(odd) .text-panel {
  transform: translateY(18px);
}

.section.reverse .text-panel {
  transform: translateY(-18px);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
}

.section-title {
  margin: 10px 0 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 4.1vw, 4rem);
  letter-spacing: 0.05rem;
}

.section-sub {
  margin: 0 0 18px;
  font-size: 1.22rem;
  letter-spacing: 0.13rem;
  text-transform: uppercase;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 44ch;
}

.ghost-button {
  margin-top: 24px;
  border: 0;
  width: fit-content;
  padding: 12px 26px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 0.78rem;
}

.image-panel {
  min-height: 520px;
  background: linear-gradient(145deg, #d6dadd, #c4c9cd);
  position: relative;
}

.image-panel::before {
  content: "placeholder image";
  position: absolute;
  inset: auto 22px 20px auto;
  background: rgba(47, 52, 55, 0.8);
  color: #f5f7f8;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.68rem;
  padding: 7px 10px;
}

.placeholder-note {
  text-align: center;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .section,
  .section.reverse {
    grid-template-columns: 1fr;
  }

  .section:nth-of-type(odd) .text-panel,
  .section.reverse .text-panel {
    transform: none;
  }

  .image-panel {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .site-wrap {
    padding: 20px 14px 40px;
  }

  .tagline {
    letter-spacing: 0.18rem;
    margin-bottom: 12px;
  }

  .section {
    margin: 30px 0;
  }

  .text-panel {
    padding: 26px 20px;
  }

  .image-panel {
    min-height: 300px;
  }
}
