:root {
  --ivory: #f6f1ec;
  --ivory-light: #fbf7f1;
  --ivory-soft: #fffdf9;
  --charcoal: #3f3d3b;
  --charcoal-soft: #5d5956;
  --muted: #746f6b;
  --gold: #c7a368;
  --gold-soft: rgba(199, 163, 104, 0.34);
  --line: rgba(149, 130, 103, 0.22);
  --panel: rgba(255, 252, 247, 0.68);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 84% 0%, rgba(178, 190, 180, 0.13), transparent 28%),
    radial-gradient(circle at 0% 28%, rgba(199, 163, 104, 0.10), transparent 24%),
    linear-gradient(180deg, var(--ivory-light), var(--ivory));
  color: var(--charcoal);
  line-height: 1.65;
}

a { color: inherit; }

.site-shell {
  width: min(1220px, calc(100% - 36px));
  margin: 24px auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(251, 247, 241, 0.58);
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 44px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2rem;
  letter-spacing: -0.18em;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 7px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.35;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

nav a,
footer a {
  color: var(--charcoal);
  text-decoration: none;
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.78rem;
  padding: 14px 22px;
}

main { padding: 0 18px 18px; }

.hero-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding: 66px 70px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 52%, rgba(255, 252, 247, 0.95), rgba(255, 252, 247, 0.35) 43%, transparent 68%),
    rgba(255, 252, 247, 0.50);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  max-width: 545px;
}

.hero-art-panel {
  position: relative;
  min-height: 440px;
}

.hero-art-panel img {
  position: absolute;
  width: min(650px, 120%);
  max-width: none;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.94;
  mix-blend-mode: multiply;
  filter: saturate(0.95) contrast(0.98);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 54%, rgba(0, 0, 0, 0.82) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 54%, rgba(0, 0, 0, 0.82) 72%, transparent 100%);
}

.kicker,
.section-title {
  margin: 0;
  color: var(--charcoal-soft);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 650;
}

.kicker::before { content: "— "; color: var(--gold); }

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  letter-spacing: -0.045em;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.025em;
}

h3 { margin: 0 0 8px; font-size: 1.08rem; }

.small-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  margin: 0 0 22px;
}

.small-divider span {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold-soft);
}

.small-divider.left-rule { justify-content: flex-start; }

.subhead {
  margin: 0 0 22px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-weight: 650;
  font-size: 0.82rem;
}

.intro {
  margin: 0;
  max-width: 500px;
  font-size: 1.05rem;
  color: var(--charcoal-soft);
}

.second-intro { margin-top: 14px; }

.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button-row.left { justify-content: flex-start; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary {
  background: var(--charcoal);
  color: var(--ivory-light);
  box-shadow: 0 12px 24px rgba(63, 61, 59, 0.14);
}

.secondary {
  border: 1px solid var(--gold);
  color: var(--charcoal);
  background: rgba(255, 252, 247, 0.44);
}

.soft-note { margin-top: 22px; color: var(--muted); font-size: 0.95rem; }

.image-divider {
  padding: 24px 36px 4px;
  display: flex;
  justify-content: center;
}

.image-divider img {
  width: min(100%, 1020px);
  height: auto;
  opacity: 0.94;
}

.values-panel,
.resources-panel,
.info-card,
.quote-card,
.journey-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 252, 247, 0.58);
}
.values-panel { margin: 22px 0; padding: 32px 48px 38px; }

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  text-align: center;
  white-space: nowrap;
}

.section-title span { display: block; height: 1px; background: var(--gold-soft); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 30px;
}

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

.values-grid article { text-align: center; padding: 0 24px; border-right: 1px solid var(--line); }
.values-grid article:last-child { border-right: 0; }

.drawn-icon {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 9px 18px rgba(199, 163, 104, 0.16);
}

.resource-cards .drawn-icon { font-size: 3.15rem; }

.values-grid h3,
.resource-cards h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.76rem;
  font-weight: 750;
}

.values-grid p,
.resource-intro p,
.resource-cards p,
.info-card li,
.info-card p,
.quote-card p,
.journey-panel p {
  color: var(--muted);
}

.resources-panel {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 34px;
  padding: 36px 44px;
  margin: 22px 0;
}

.path-panel { align-items: stretch; }
.resource-intro p { max-width: 330px; }

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.resource-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 198px;
  padding: 24px 18px;
  text-align: center;
  background: rgba(251, 247, 241, 0.55);
}

.two-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}

.info-card,
.quote-card {
  min-height: 256px;
  padding: 38px 44px;
  position: relative;
  overflow: hidden;
}

.info-card ul { list-style: none; padding: 0; margin: 24px 0 0; }
.info-card li { margin: 12px 0; }
.info-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory-light);
  font-size: 0.65rem;
}

.quote-card { text-align: center; display: grid; place-items: center; }
.quote-card h2 { max-width: 500px; font-size: clamp(1.65rem, 2.25vw, 2.25rem); }
.quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 3rem; line-height: 1; }

.journey-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: center;
  gap: 34px;
  margin: 22px 0 28px;
  padding: 30px 44px;
}

.journal-art {
  min-height: 190px;
  border-radius: 12px;
  border: 1px solid rgba(149, 130, 103, 0.16);
  overflow: hidden;
  background: rgba(255, 252, 247, 0.42);
}

.ornamental-art {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(199, 163, 104, 0.18), transparent 34%),
    radial-gradient(circle at 48% 58%, rgba(255, 252, 247, 0.92), rgba(255, 252, 247, 0.22) 64%, transparent 76%);
}

.ornamental-art::before {
  content: "☾✦";
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  letter-spacing: -0.12em;
  opacity: 0.52;
}

.journal-art img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 36px;
  align-items: start;
  padding: 36px 44px 28px;
}

.footer-brand strong { font-size: 1.8rem; }
.footer-links { display: grid; gap: 9px; font-size: 0.9rem; }
.copyright {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-hero { padding: 74px 8vw 28px; max-width: 900px; }
.page-hero h1 { font-size: clamp(2rem, 3.9vw, 3.35rem); }
.page-copy { font-size: 1.03rem; max-width: 740px; margin-top: 16px; color: var(--muted); }
.cards-section, .page-section { padding: 56px 8vw; }
.card { background: rgba(255, 252, 247, 0.58); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.two { grid-template-columns: repeat(2, 1fr); }
.list { display: grid; gap: 0; max-width: 850px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.list-item { background: rgba(255,252,247,.58); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px; }
.blog-post { max-width: 820px; margin: 0 auto; }
.blog-post p { color: var(--charcoal-soft); font-size: 1.05rem; margin: 0 0 22px; }
.blog-post h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
.blog-post h2 { margin-top: 42px; }
.blog-post .button { margin-top: 22px; }

@media (max-width: 980px) {
  .site-header,
  footer,
  .hero-section,
  .resources-panel,
  .two-card-row,
  .journey-panel { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; }
  nav { justify-content: flex-start; gap: 16px; }
  .hero-section { padding: 42px 28px; }
  .hero-art-panel { min-height: 320px; }
  .hero-art-panel img { position: relative; right: auto; top: auto; transform: none; width: 100%; }
  .values-grid,
  .values-grid.four-values,
  .resource-cards,
  .grid,
  .two { grid-template-columns: repeat(2, 1fr); }
  .values-grid article:nth-child(2n) { border-right: 0; }
}

@media (max-width: 640px) {
  .site-shell { width: calc(100% - 16px); margin: 8px auto; border-radius: 16px; }
  .site-header,
  footer,
  .values-panel,
  .resources-panel,
  .info-card,
  .quote-card,
  .journey-panel { padding-left: 22px; padding-right: 22px; }
  nav a:not(.nav-cta) { display: none; }
  h1 { font-size: clamp(3rem, 13vw, 4rem); }
  .section-title { white-space: normal; }
  .values-grid,
  .values-grid.four-values,
  .resource-cards { grid-template-columns: 1fr; }
  .values-grid article { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .values-grid article:last-child { border-bottom: 0; }
}