:root {
  --cream: #f7ecd9;
  --paper: #fff8ee;
  --aubergine: #250d2f;
  --plum: #3d1646;
  --green: #263615;
  --green-soft: #425c28;
  --gold: #a6660e;
  --sun: #e2b84d;
  --ink: #241127;
  --white: #fffaf2;
  --muted: #6d5965;
  --line: rgba(166, 102, 14, 0.24);
  --shadow: 0 22px 54px rgba(37, 13, 47, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(247, 236, 217, 0.8) 42%, rgba(37, 13, 47, 0.06)),
    var(--cream);
}

.wrap {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 238, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(166, 102, 14, 0.42);
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  color: var(--aubergine);
}

.brand-sub {
  display: block;
  max-width: 210px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--gold);
  color: var(--gold);
  outline: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--aubergine);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #c78518, var(--gold));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(166, 102, 14, 0.22);
  font-weight: 900;
  cursor: pointer;
}

.button.secondary {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid rgba(166, 102, 14, 0.3);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 92px) 0 78px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -20vh;
  width: 78vw;
  height: 46vh;
  border-radius: 60% 0 0 0;
  background: linear-gradient(135deg, rgba(61, 22, 70, 0.98), rgba(37, 13, 47, 0.94));
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 8px;
  background: rgba(166, 102, 14, 0.12);
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow svg,
.button svg,
.detail svg,
.mini-icon svg {
  width: 22px;
  height: 22px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 8.8vw, 7.4rem);
  letter-spacing: 0;
}

.title-purple {
  color: var(--aubergine);
}

.title-green {
  color: var(--green);
}

.title-gold {
  color: var(--gold);
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #2d182e;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 700;
}

.hero-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
}

.hero-mark::before {
  content: "";
  position: absolute;
  inset: 7% 1% 8% 13%;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.52);
  box-shadow: var(--shadow);
}

.hero-mark img {
  position: relative;
  width: min(82vw, 355px);
  border-radius: 50%;
}

.leaf-cluster {
  position: absolute;
  top: 8px;
  right: 32px;
  display: grid;
  gap: 6px;
  transform: rotate(-20deg);
}

.leaf-cluster span {
  display: block;
  width: 20px;
  height: 44px;
  border-radius: 100% 0 100% 0;
  background: var(--aubergine);
}

.leaf-cluster span:nth-child(2) {
  margin-left: 24px;
  background: var(--green);
}

.leaf-cluster span:nth-child(3) {
  margin-left: 48px;
  background: var(--gold);
}

.section {
  padding: clamp(56px, 8vw, 92px) 0;
}

.section.alt {
  background: rgba(255, 248, 238, 0.68);
  border-block: 1px solid var(--line);
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(90% 70% at 78% 10%, rgba(166, 102, 14, 0.28), transparent 58%),
    linear-gradient(135deg, var(--aubergine), #17051e);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: var(--aubergine);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.dark .section-heading h2,
.dark .section-heading p {
  color: var(--white);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.84);
  box-shadow: 0 16px 40px rgba(37, 13, 47, 0.08);
  padding: 24px;
}

.dark .card {
  background: rgba(255, 248, 238, 0.08);
  color: var(--white);
}

.card h3 {
  margin: 14px 0 8px;
  color: var(--aubergine);
  font-size: 1.35rem;
}

.dark .card h3 {
  color: var(--sun);
}

.card p,
.card ul {
  margin: 0;
  color: var(--muted);
}

.dark .card p,
.dark .card ul {
  color: rgba(255, 250, 242, 0.86);
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.mini-icon::before,
.detail-icon {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mini-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.mini-icon {
  position: relative;
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(70% 120% at 90% 10%, rgba(226, 184, 77, 0.2), transparent 54%),
    linear-gradient(135deg, var(--plum), var(--aubergine));
  box-shadow: var(--shadow);
}

.event-panel h2,
.event-panel h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.event-panel p {
  margin: 0;
  color: rgba(255, 250, 242, 0.86);
}

.details-list {
  display: grid;
  gap: 14px;
}

.detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.detail-icon {
  color: var(--sun);
}

.detail svg {
  color: var(--sun);
}

.page-hero {
  padding: 62px 0 52px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 238, 0.52);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.quote {
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  color: var(--aubergine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.founder-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(80% 120% at 10% 8%, rgba(226, 184, 77, 0.18), transparent 58%),
    rgba(255, 248, 238, 0.78);
  box-shadow: 0 18px 48px rgba(37, 13, 47, 0.08);
}

.founder-mark {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.founder-mark img {
  width: min(72vw, 230px);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.founder-mark strong {
  display: block;
  color: var(--aubergine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.founder-mark span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.founder-copy h2 {
  margin: 0 0 14px;
  color: var(--aubergine);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.founder-copy p {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.05rem;
}

.founder-copy p:last-child {
  margin-bottom: 0;
}

.list-check {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.list-check li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.list-check li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.resource-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.resource-actions .button {
  min-height: 42px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.filter-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--aubergine);
  font-weight: 800;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(166, 102, 14, 0.12);
  color: var(--gold);
}

.form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--aubergine);
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(37, 13, 47, 0.2);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #17220f);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(160px, 0.8fr));
  gap: 30px;
  padding: 42px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 250, 242, 0.86);
}

.site-footer ul {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 82px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .hero-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .event-panel,
  .founder-panel,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero::after {
    height: 24vh;
  }

  .hero-mark {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .brand-sub {
    display: none;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 4.7rem);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-mark img {
    width: min(78vw, 300px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
