:root {
  color-scheme: light;
  --bg: #fbf7ff;
  --panel: #ffffff;
  --panel-2: #f1e9fb;
  --text: #2f2740;
  --muted: #6e637e;
  --line: rgba(96, 72, 122, 0.18);
  --gold: #8a5cf6;
  --teal: #2fae9b;
  --rust: #ee8c7a;
  --ink: #ffffff;
  --soft: #efe4ff;
  --deep: #4b2a78;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 82px;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(96, 72, 122, 0.12);
  background: rgba(251, 247, 255, 0.9);
  backdrop-filter: blur(12px);
}

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

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(75, 42, 120, 0.16);
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  color: rgba(47, 39, 64, 0.82);
  font-size: 0.95rem;
}

nav a {
  transition: color 160ms ease;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 64px) 72px;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 247, 255, 0.96) 0%, rgba(244, 235, 255, 0.84) 40%, rgba(244, 235, 255, 0.04) 68%),
    linear-gradient(180deg, rgba(251, 247, 255, 0.02) 0%, rgba(251, 247, 255, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: var(--text);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 600px;
  color: rgba(47, 39, 64, 0.78);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  cursor: pointer;
  font: inherit;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

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

.button.ghost {
  border-color: rgba(75, 42, 120, 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.56);
}

.hero .button.ghost {
  border-color: rgba(75, 42, 120, 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
}

.intro,
.section,
.sessions,
.contact {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.section-description {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about {
  border-bottom: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.about-layout > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-points {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding: 0 0 16px 30px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.about-points li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--deep);
  content: "✓";
  font-size: 0.72rem;
  line-height: 18px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.session-panel,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(75, 42, 120, 0.08);
}

.service-card {
  min-height: 230px;
  padding: 24px;
}

.service-card p,
.session-panel p {
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(138, 92, 246, 0.28);
  background: var(--soft);
  color: var(--deep);
  font-size: 0.74rem;
  font-weight: 900;
}

.sessions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.offering {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(75, 42, 120, 0.08);
}

.offering h3 {
  font-size: 1.4rem;
}

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

.featured-offering {
  grid-column: 1 / -1;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  padding: clamp(30px, 5vw, 52px);
  border-color: rgba(138, 92, 246, 0.34);
  background: linear-gradient(135deg, #ffffff, var(--panel-2));
}

.featured-offering h3 {
  max-width: 560px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.offering-summary .button {
  margin-top: 12px;
}

.offering-details {
  padding: 26px;
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.68);
}

.details-heading {
  margin-bottom: 14px;
  color: var(--text) !important;
  font-weight: 800;
}

.format-note {
  color: var(--deep) !important;
  font-weight: 750;
}

.package-label {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(138, 92, 246, 0.34);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--gold);
}

.package-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.package-list li::marker {
  color: var(--gold);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--gold);
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(47, 39, 64, 0.84);
  font-size: 0.92rem;
  font-weight: 750;
}

.optional-label {
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(96, 72, 122, 0.2);
  border-radius: 4px;
  background: #fffafe;
  color: var(--text);
  font: inherit;
  padding: 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(138, 92, 246, 0.38);
  outline-offset: 2px;
}

.form-note {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-note.success {
  color: #257466;
  font-weight: 700;
}

.form-note.error {
  color: #9a3f35;
  font-weight: 700;
}

.form-note.error a {
  text-decoration: underline;
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-content {
  width: min(680px, 100%);
}

.thanks-content .brand {
  margin-bottom: 72px;
}

.thanks-content h1 {
  margin-bottom: 24px;
}

.thanks-content > p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

@media (max-width: 900px) {
  .intro,
  .about-layout,
  .contact,
  .featured-offering {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px 18px;
  }

  .site-header .brand span:last-child {
    display: none;
  }

  .site-header .brand-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
  }

  nav {
    justify-content: flex-end;
    gap: 12px;
    padding-top: 8px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 110px;
    align-items: end;
  }

  .hero img {
    object-position: 78% top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(251, 247, 255, 0.03) 0%, rgba(251, 247, 255, 0.2) 32%, rgba(251, 247, 255, 0.88) 74%, rgba(251, 247, 255, 0.98) 100%),
      linear-gradient(90deg, rgba(251, 247, 255, 0.68) 0%, rgba(251, 247, 255, 0.2) 58%, rgba(251, 247, 255, 0.02) 100%);
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

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

  .offering-list {
    grid-template-columns: 1fr;
  }

  .featured-offering {
    grid-column: auto;
  }

  .offering {
    min-height: 0;
  }

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