:root {
  --cream: #f7eedc;
  --cream-deep: #efe0c3;
  --plum: #6c405d;
  --plum-dark: #3f2639;
  --gold: #c99b43;
  --gold-soft: #ead19a;
  --ink: #2d2430;
  --muted: #766774;
  --white: #fffaf1;
  --line: rgba(108, 64, 93, 0.18);
  --shadow: 0 24px 70px rgba(63, 38, 57, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 238, 220, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum-dark);
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(150px, 18vw, 220px);
  height: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--plum-dark);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover,
.social-links a:hover,
.text-link:hover {
  color: var(--plum);
}

.section-band,
.section {
  padding-inline: clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  min-height: min(780px, 82svh);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(32px, 7vw, 92px);
  padding-block: clamp(52px, 8vw, 96px);
  background-image: linear-gradient(rgba(247, 238, 220, 0.7), rgba(247, 238, 220, 0.96)),
    url("assets/innerbeing-614-visual.png");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--plum-dark);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.lede {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-side img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.signup-section {
  padding-bottom: clamp(28px, 5vw, 56px);
}

.signup-section .signup-panel {
  max-width: 920px;
  margin-inline: auto;
}

.signup-section .email-form,
.mailchimp-signup {
  max-width: 620px;
}

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

.button,
.email-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.email-form button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(108, 64, 93, 0.22);
}

.secondary {
  background: var(--gold-soft);
  color: var(--plum-dark);
}

.quiet {
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.62);
  color: var(--plum-dark);
}

.signup-panel,
.workshop-card,
.journey-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow);
}

.signup-panel {
  padding: clamp(24px, 4vw, 34px);
}

.signup-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

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

.email-form {
  margin-top: 24px;
}

.email-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--plum-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

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

.mc-field-group {
  margin-top: 14px;
}

.mc-field-group:first-child,
.form-grid .mc-field-group {
  margin-top: 0;
}

.mc-field-group input,
.field-row input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 16px;
}

.mc-field-group input:focus,
.field-row input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(201, 155, 67, 0.18);
}

.email-form button {
  background: var(--plum-dark);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.form-note {
  display: none;
  margin: 16px 0 0;
  border-radius: 8px;
  background: rgba(201, 155, 67, 0.18);
  color: var(--plum-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 14px;
}

.email-form.is-submitted .form-note {
  display: block;
}

.mailchimp-bot-field,
.mailchimp-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section {
  padding-block: clamp(56px, 8vw, 102px);
}

.section-heading {
  max-width: 780px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.guide-grid,
.service-list,
.journey-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.guide-grid article,
.service-list article {
  min-height: 100%;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.guide-grid span {
  color: var(--gold);
  font-weight: 800;
}

.guide-grid p,
.service-list p,
.workshop-card p,
.journey-card p {
  color: var(--muted);
}

.journey-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.journey-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.featured-card {
  background: rgba(108, 64, 93, 0.1);
}

.step-number {
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(201, 155, 67, 0.2);
  color: var(--plum-dark);
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 800;
}

.journey-card .text-link {
  margin-top: auto;
  padding-top: 16px;
}

.resource-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: clamp(20px, 5vw, 72px);
  border-radius: 8px;
  background: var(--plum-dark);
  color: var(--white);
  padding: clamp(28px, 5vw, 48px);
}

.resource-band h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
}

.resource-band .eyebrow {
  color: var(--gold-soft);
}

.resource-band .resource-actions {
  margin-top: 0;
}

.resource-band .primary {
  background: var(--white);
  color: var(--plum-dark);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 80px);
}

.services-section {
  background: var(--cream);
}

.split-section .service-list {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.workshop-section {
  background: var(--cream-deep);
}

.workshop-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 36px);
}

.date-pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  border-radius: 999px;
  background: rgba(201, 155, 67, 0.22);
  color: var(--plum-dark);
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link {
  color: var(--plum-dark);
  font-weight: 800;
  white-space: nowrap;
}

.connect-section {
  text-align: center;
}

.connect-section .section-heading {
  margin-inline: auto;
}

.connect-section .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.55);
  padding: 10px 18px 10px 10px;
  color: var(--plum-dark);
  font-weight: 800;
  text-decoration: none;
}

.social-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  color: var(--white);
  font-size: 0.75rem;
}

.connect-button {
  margin-top: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--plum-dark);
  font-weight: 800;
}

.site-footer a {
  color: var(--plum-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer-socials {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero {
    min-height: calc(100svh - 176px);
    align-content: center;
  }

  .hero-side {
    display: none;
  }

  .guide-grid,
  .service-list,
  .journey-list {
    grid-template-columns: 1fr;
  }

  .resource-band,
  .workshop-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-socials {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 14px;
  }

  .brand img {
    width: 150px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .resource-actions,
  .form-grid,
  .field-row,
  .site-footer {
    display: flex;
    flex-direction: column;
  }

  .button,
  .field-row button {
    width: 100%;
  }

  .field-row input,
  .field-row button {
    border-radius: 8px;
  }

  .social-links {
    align-items: stretch;
    flex-direction: column;
  }

  .social-links a {
    justify-content: flex-start;
  }
}
