@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap");
:root {
  --rose: #a96577;
  --rose-deep: #7d4052;
  --rose-soft: #ead8de;
  --ink: #252128;
  --muted: #6d656c;
  --line: #e7e0e4;
  --white: #ffffff;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
button, a { font: inherit; }

.site-header { width: min(1180px, calc(100% - 40px)); min-height: 92px; margin: 0 auto; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header > span { color: var(--muted); font-size: 13px; }
.wordmark { color: var(--rose); text-decoration: none; display: inline-flex; align-items: center; gap: 11px; }
.wordmark img { width: 82px; height: 82px; object-fit: contain; flex: none; }
.wordmark span { display: grid; line-height: 1.1; }
.wordmark .brand-name { color: var(--rose); font-family: Cinzel, Georgia, serif; font-size: 17px; letter-spacing: .06em; }

.shell { width: min(980px, calc(100% - 40px)); margin: 0 auto; padding: 86px 0; }
.eyebrow { margin: 0 0 14px; color: var(--rose-deep); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 6vw, 68px); font-weight: 400; line-height: 1.05; }
.intro { max-width: 620px; margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.assessment-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.assessment-button { min-height: 190px; border: 1px solid var(--line); border-top: 5px solid var(--rose); background: var(--white); color: var(--ink); cursor: pointer; padding: 26px; text-align: left; transition: transform .15s ease, box-shadow .15s ease; }
.assessment-button:hover, .assessment-button:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37,33,40,.09); outline: none; }
.assessment-button span { display: block; color: var(--rose-deep); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.assessment-button strong { display: block; margin-top: 28px; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.assessment-button small { display: block; margin-top: 8px; color: var(--muted); }

.workspace-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.switch-button { border: 1px solid var(--rose-deep); background: var(--white); color: var(--rose-deep); cursor: pointer; padding: 12px 18px; font-size: 12px; font-weight: 800; }
.tool-grid { margin-top: 46px; display: grid; gap: 14px; }
.tool-link { border: 1px solid var(--line); border-left: 5px solid var(--rose); color: var(--ink); display: grid; grid-template-columns: 78px 1fr auto; align-items: center; gap: 20px; padding: 22px 24px; text-decoration: none; }
.tool-link:hover { background: #fcf8fa; }
.tool-link > span:first-child { color: var(--rose-deep); font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-style: italic; }
.tool-link strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 400; }
.tool-link small { display: block; margin-top: 5px; color: var(--muted); }
.tool-link > span:last-child { color: var(--rose-deep); font-size: 22px; }

@media (max-width: 720px) {
  .shell { padding: 54px 0; }
  .assessment-grid { grid-template-columns: 1fr; }
  .assessment-button { min-height: 140px; }
  .workspace-heading { flex-direction: column; }
  .tool-link { grid-template-columns: 54px 1fr auto; padding: 18px 16px; }
}
/* Toolkit homepage */
.homepage {
  width: min(1180px, calc(100% - 40px));
  padding: 72px 0 90px;
}

.homepage-intro {
  max-width: 880px;
}

.homepage h1 {
  margin: 10px 0 22px;
  color: var(--ink);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.homepage .intro {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.homepage-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.benefits-panel,
.selector-panel {
  border: 1px solid var(--line);
  padding: 34px;
}

.benefits-panel {
  background: var(--white);
}

.selector-panel {
  background: var(--rose-soft);
  border-top: 4px solid var(--rose);
}

.homepage h2 {
  margin: 8px 0 20px;
  color: var(--ink);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  line-height: 1.25;
}

.benefits-panel h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.selector-panel h2 {
  font-size: 27px;
}

.benefits-list {
  margin: 26px 0 0;
  padding-left: 24px;
  color: var(--ink);
}

.benefits-list li {
  padding: 0 0 15px 8px;
  line-height: 1.6;
}

.benefits-list li::marker {
  color: var(--rose-deep);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
}

.selector-panel > p:not(.eyebrow):not(.purchase-note) {
  color: var(--muted);
  line-height: 1.6;
}

.assessment-form {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.assessment-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.assessment-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--rose);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.assessment-form button {
  min-height: 52px;
  border: 1px solid var(--rose-deep);
  background: var(--rose-deep);
  color: var(--white);
  font-weight: 700;
}

.assessment-form button:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.purchase-note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(169, 101, 119, 0.25);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .homepage {
    padding-top: 48px;
  }

  .homepage-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .homepage {
    width: min(100% - 28px, 1180px);
  }

  .benefits-panel,
  .selector-panel {
    padding: 25px 22px;
  }
}