* {
  box-sizing: border-box;
}

:root {
  --plum: #251139;
  --deep-purple: #35175a;
  --purple: #5d2d85;
  --lavender: #eadcf7;
  --soft-lavender: #f8f0fb;
  --ivory: #fffaf3;
  --gold: #c69a46;
  --text: #321847;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 154, 70, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
}

.header-logo img {
  width: 210px;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(37, 17, 57, 0.12);
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: var(--plum);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(234, 220, 247, 0.25), transparent 30%),
    linear-gradient(135deg, rgba(37, 17, 57, 0.96), rgba(93, 45, 133, 0.88)),
    url("images/purple-lotus-logo.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 17, 57, 0.9), rgba(37, 17, 57, 0.66), rgba(37, 17, 57, 0.9));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: bold;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  color: var(--deep-purple);
  margin-bottom: 18px;
}

h3 {
  color: var(--deep-purple);
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
}

.button.primary {
  background: var(--gold);
  color: var(--plum);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

section {
  padding: 95px 24px;
}

.welcome,
.offerings,
.contact-section,
.quote-section {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.welcome {
  background:
    radial-gradient(circle at top left, rgba(198, 154, 70, 0.16), transparent 35%),
    var(--ivory);
}

.welcome p,
.about-content p,
.retreat-section p,
.contact-section p {
  font-size: 1.12rem;
}

.about-section {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.portrait-panel {
  padding: 9px;
  background: linear-gradient(135deg, var(--gold), #efd89a, var(--purple));
  border-radius: 36px;
  box-shadow: 0 28px 80px rgba(37, 17, 57, 0.2);
}

.portrait-panel img {
  display: block;
  width: 100%;
  border-radius: 28px;
}

.about-content {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(198, 154, 70, 0.25);
  border-radius: 36px;
  padding: 42px;
  box-shadow: 0 24px 70px rgba(37, 17, 57, 0.1);
}

.signature-mark {
  width: 260px;
  max-width: 100%;
  border-radius: 24px;
  margin-bottom: 22px;
  box-shadow: 0 20px 50px rgba(37, 17, 57, 0.18);
}

.offerings {
  max-width: 1160px;
}

.offering-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offering-card {
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(198, 154, 70, 0.22);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 65px rgba(37, 17, 57, 0.1);
}

.offering-card span {
  color: var(--gold);
  font-weight: bold;
  letter-spacing: 0.2em;
}

.offering-card.highlight {
  background: linear-gradient(160deg, var(--plum), var(--purple));
  color: var(--white);
  transform: translateY(-12px);
}

.offering-card.highlight h3 {
  color: var(--gold);
}

.retreat-section {
  max-width: 1160px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 240, 251, 0.98));
  border-radius: 42px;
  box-shadow: 0 26px 80px rgba(37, 17, 57, 0.12);
}

.retreat-list {
  background: var(--plum);
  color: var(--white);
  border-radius: 30px;
  padding: 32px;
  border: 1px solid rgba(198, 154, 70, 0.35);
}

.retreat-list p {
  margin: 12px 0;
  color: var(--lavender);
}

.quote-section {
  padding-top: 70px;
}

blockquote {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.25;
  color: var(--deep-purple);
  font-style: italic;
}

.contact-card {
  max-width: 560px;
  margin: 34px auto 0;
  padding: 34px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid rgba(198, 154, 70, 0.28);
  box-shadow: 0 25px 70px rgba(37, 17, 57, 0.13);
}

.contact-card p {
  margin: 10px 0;
}

.site-footer {
  text-align: center;
  background: var(--plum);
  color: var(--white);
  padding: 48px 24px;
}

.site-footer img {
  width: 280px;
  max-width: 90%;
  border-radius: 22px;
  margin-bottom: 18px;
}

.site-footer p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

@media (max-width: 850px) {
  .site-header {
    position: static;
    flex-direction: column;
    gap: 16px;
  }

  .header-logo img {
    width: 190px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero {
    min-height: 72vh;
    padding: 70px 22px;
  }

  .about-section,
  .offering-grid,
  .retreat-section {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 30px;
  }

  .offering-card.highlight {
    transform: none;
  }

  .retreat-section {
    border-radius: 30px;
    padding: 48px 24px;
  }
}
