:root {
  --cream: #fbf3e6;
  --cream-2: #fffaf2;
  --paper: #fffdf8;
  --purple: #4b325a;
  --purple-2: #7d5a86;
  --sage: #7e8b69;
  --sage-2: #dce3d2;
  --coral: #d8684c;
  --coral-2: #f5c3b5;
  --gold: #d5aa62;
  --ink: #2b2631;
  --muted: #746b73;
  --line: rgba(75, 50, 90, .15);
  --shadow: 0 24px 70px rgba(75, 50, 90, .14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 8%, rgba(125, 90, 134, .16) 0 170px, transparent 171px),
    radial-gradient(circle at 95% 12%, rgba(126, 139, 105, .15) 0 150px, transparent 151px),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--purple-2); }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--purple);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 86px 0; }
.section-sm { padding: 52px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 242, .82);
  border-bottom: 1px solid rgba(75, 50, 90, .09);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { width: 192px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  color: var(--purple);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(125, 90, 134, .11);
  color: var(--purple);
}
.nav-cta { margin-left: 8px; }
.menu-toggle {
  display: none;
  border: 0;
  background: var(--purple);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.hero {
  padding: 46px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(126, 139, 105, .14);
  color: var(--sage);
  border: 1px solid rgba(126, 139, 105, .2);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--coral);
}
h1, h2, h3, .display {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--purple);
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(44px, 6vw, 78px); letter-spacing: -.035em; margin-top: 20px; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -.025em; }
h3 { font-size: clamp(23px, 2.2vw, 30px); letter-spacing: -.015em; }
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  margin: 22px 0 0;
  max-width: 660px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  box-shadow: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); color: inherit; }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 12px 28px rgba(75, 50, 90, .22); }
.btn-primary:hover { color: #fff; box-shadow: 0 18px 36px rgba(75, 50, 90, .25); }

/* Keep the header contact button readable in all states. */
.nav-links a.nav-cta.btn-primary,
.nav-links a.nav-cta.btn-primary:visited {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.nav-links a.nav-cta.btn-primary:hover,
.nav-links a.nav-cta.btn-primary:focus,
.nav-links a.nav-cta.btn-primary[aria-current="page"] {
  background: var(--purple-2);
  color: #fff;
}

.btn-secondary { background: #fff; border-color: var(--line); color: var(--purple); }
.btn-soft { background: rgba(216, 104, 76, .11); color: var(--coral); border-color: rgba(216, 104, 76, .18); }
.hero-card {
  position: relative;
  background: rgba(255, 253, 248, .7);
  border: 1px solid rgba(75, 50, 90, .12);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.hero-card img { border-radius: 28px; width: 100%; height: auto; }
.float-card {
  position: absolute;
  left: -24px;
  bottom: -22px;
  max-width: 280px;
  background: rgba(255, 253, 248, .95);
  border: 1px solid rgba(75, 50, 90, .12);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: 0 18px 44px rgba(75, 50, 90, .14);
}
.float-card strong { display: block; color: var(--purple); }
.float-card span { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head p { margin: 12px 0 0; color: var(--muted); max-width: 650px; font-size: 18px; }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: center; }
.card {
  background: rgba(255, 253, 248, .82);
  border: 1px solid rgba(75, 50, 90, .11);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 10px 35px rgba(75, 50, 90, .07);
}
.card p { color: var(--muted); margin: 12px 0 0; }
.card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(125, 90, 134, .12);
  color: var(--purple);
  font-size: 24px;
  margin-bottom: 18px;
}
.card.sage .icon { background: rgba(126, 139, 105, .16); color: var(--sage); }
.card.coral .icon { background: rgba(216, 104, 76, .14); color: var(--coral); }

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: rgba(255, 253, 248, .8);
  border: 1px solid rgba(75, 50, 90, .12);
  box-shadow: var(--shadow);
}
.image-frame img { border-radius: 26px; width: 100%; height: 100%; object-fit: cover; }
.image-frame.portrait { max-width: 460px; margin: 0 auto; }

.callout {
  background: linear-gradient(135deg, rgba(125, 90, 134, .13), rgba(126, 139, 105, .14));
  border: 1px solid rgba(75, 50, 90, .11);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 18px 60px rgba(75, 50, 90, .08);
}
.callout p { color: var(--muted); font-size: 18px; }

.workshop-card {
  overflow: hidden;
  padding: 0;
}
.workshop-card img { width: 100%; height: 260px; object-fit: cover; }
.workshop-card .content { padding: 26px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(126, 139, 105, .14);
  color: var(--sage);
  border: 1px solid rgba(126, 139, 105, .19);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
}
.badge.purple { background: rgba(125, 90, 134, .11); color: var(--purple); border-color: rgba(125, 90, 134, .15); }
.badge.coral { background: rgba(216, 104, 76, .11); color: var(--coral); border-color: rgba(216, 104, 76, .16); }

.page-hero {
  padding: 62px 0 42px;
  background: linear-gradient(180deg, rgba(125, 90, 134, .08), transparent);
}
.page-hero .lead { max-width: 760px; }
.breadcrumb { color: var(--muted); font-weight: 700; margin-bottom: 16px; }
.breadcrumb a { color: var(--purple); }

.timeline { display: grid; gap: 14px; }
.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 253, 248, .72);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.timeline-item .date { font-weight: 900; color: var(--coral); }
.timeline-item p { margin: 4px 0 0; color: var(--muted); }

.list-clean { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.list-clean li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}
.list-clean li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(125, 90, 134, .12);
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
}

.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.28;
  color: var(--purple);
  margin: 0;
}

.blog-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.post-list { display: grid; gap: 18px; }
.post {
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}
.post time { font-size: 13px; color: var(--sage); font-weight: 900; }
.post h3 { margin-top: 8px; }
.post p { color: var(--muted); margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { font-weight: 850; color: var(--purple); display: block; margin-bottom: 7px; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(75, 50, 90, .16);
  background: #fffdf8;
  border-radius: 16px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
}
textarea { min-height: 138px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--purple-2); box-shadow: 0 0 0 4px rgba(125, 90, 134, .12); }
.small-note { color: var(--muted); font-size: 14px; margin: 10px 0 0; }

.site-footer {
  margin-top: 40px;
  background: #392746;
  color: rgba(255,255,255,.86);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 32px; }
.footer-logo { width: 190px; filter: brightness(1.05); }
.site-footer h3 { color: #fff7ec; font-size: 22px; }
.site-footer a { color: rgba(255,255,255,.86); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 34px;
  padding-top: 20px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.notice {
  background: rgba(216, 104, 76, .1);
  color: #8a3d2e;
  border: 1px solid rgba(216, 104, 76, .18);
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid, .grid-2, .blog-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero-card { order: -1; }
  .section-head { display: block; }
  .float-card { position: static; margin: 14px 0 0; max-width: none; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .navbar { min-height: 72px; }
  .logo img { width: 172px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 250, 242, .98);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { justify-content: center; }
  .nav-cta { margin-left: 0; }
  .hero { padding-top: 28px; }
  .section { padding: 62px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
}
