:root {
  --bg-cream: #f5efe6;
  --bg-sand: #f1e7d7;
  --bg-pearl: #f9f5ef;
  --text-dark: #4a3c32;
  --text-muted: #6b5f53;
  --accent-gold: #c08c34;
  --accent-gold-dark: #a37428;
  --card-shadow: 0 35px 55px rgba(120, 103, 85, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Source Sans Pro', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at top left, #fdf8f2, #f1e7d7 60%);
  min-height: 100vh;
}

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

.page {
  padding-bottom: 5rem;
}

.hero {
  padding: 4rem clamp(1.5rem, 4vw, 6rem);
  background: linear-gradient(125deg, var(--bg-cream) 55%, rgba(255, 255, 255, 0)),
    url('assets/images/flower1.png')
      center/cover;
  position: relative;
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 3rem;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 0.9rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(87, 74, 63, 0.15);
  margin-left: 0;
  margin-right: auto;
}

.hero__logo {
  width: clamp(130px, 16vw, 190px);
  height: auto;
}

.hero__copy h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
  color: var(--text-dark);
}

.support {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.button {
  font: 600 1rem/1 'Source Sans 3', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.95rem 2.5rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button--primary {
  background: var(--accent-gold);
  color: #fff;
  box-shadow: 0 12px 30px rgba(160, 120, 45, 0.35);
}

.button--ghost {
  background: transparent;
  border: 1px solid rgba(64, 47, 32, 0.2);
  color: var(--text-dark);
  padding-inline: 2rem;
  box-shadow: none;
}

.button--ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-dark);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(160, 120, 45, 0.4);
}

.hero__image,
.sessions__image {
  max-width: 440px;
  justify-self: center;
}

.image-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 8px solid rgba(255, 255, 255, 0.65);
}

.image-frame--shadow {
  box-shadow: 0 30px 60px rgba(61, 47, 33, 0.2);
}

.welcome {
  background: var(--bg-pearl);
  padding: 4rem clamp(1.5rem, 4vw, 6rem) 2rem;
  position: relative;
}

.welcome::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  width: 140%;
  height: 120px;
  background: var(--bg-pearl);
  border-top-left-radius: 60% 100%;
  border-top-right-radius: 60% 100%;
  transform: translateX(-50%);
  z-index: -1;
  box-shadow: 0 -25px 50px rgba(0, 0, 0, 0.05);
}

.card {
  background: #fff;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--card-shadow);
}

.section-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.section-label span {
  font-weight: 600;
}

.leaf-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.9rem;
}

.leaf-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.leaf-list li::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: 0.35rem;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%238a9c7b' d='M15.6 3.4c-4.4.2-8.2 2.9-10 6.9-.7 1.7-1 3.7-.9 5.8 2.1.1 4.1-.2 5.8-.9 4-1.8 6.7-5.6 6.9-10-.1-.9-.8-1.6-1.8-1.8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.text-link {
  color: var(--accent-gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.sessions {
  background: var(--bg-cream);
  padding: 5rem clamp(1.5rem, 4vw, 6rem);
}

.sessions__card {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.sessions__copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  .hero__layout,
  .sessions__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__brand-row {
    flex-direction: column;
    justify-content: center;
  }

  .leaf-list li {
    padding-left: 1.5rem;
    text-align: left;
  }

  .button {
    width: 100%;
  }
}
