:root {
  --forest: #1A2E22;
  --forest-soft: #22332a;
  --gold: #C4933A;
  --paper: #F5EDE2;
  --ink: #1A2E22;
  --muted: #3a4a40;
  --white: #FFFFFF;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Switzer", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.site-shell {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.section-pad {
  padding: clamp(76px, 9vw, 126px) 7vw;
}

.section-dark {
  background: var(--forest);
  color: var(--white);
}

.section-paper {
  background: var(--paper);
}

.section-white {
  background: var(--white);
}

.site-container {
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.display-title {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .96;
  letter-spacing: -.02em;
  margin: 22px 0 0;
  overflow-wrap: anywhere;
}

.section-title {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 16px 0 0;
  overflow-wrap: anywhere;
}

.body-large {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.section-dark .body-large {
  color: rgba(245, 237, 226, .76);
}

.gold-btn,
.dark-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 40px;
  padding: 15px 26px;
  font: 600 15px/1 "Switzer", system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.gold-btn {
  background: var(--gold);
  color: var(--forest);
  border: none;
}

.site-sidebar,
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.site-sidebar::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(26, 46, 34, .92), rgba(26, 46, 34, .92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' seed='19'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 .102 0 0 0 0 .180 0 0 0 0 .133 0 0 0 .34 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23grain)' opacity='.22'/%3E%3C/svg%3E");
  opacity: .18;
  mix-blend-mode: screen;
}

.site-sidebar > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.sidebar-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Newsreader", serif;
  font-size: 24px;
  color: var(--white);
}

.sidebar-brand-motif {
  width: 34px;
  color: var(--gold);
  opacity: .7;
  flex: none;
}

.dark-btn {
  background: var(--forest);
  color: var(--white);
  border: none;
}

.ghost-btn {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(196, 147, 58, .5);
}

.editorial-card {
  border: 1px solid rgba(26, 46, 34, .12);
  border-radius: 4px;
  background: var(--white);
}

.placeholder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #ece2d3, #ece2d3 11px, #e4d8c6 11px, #e4d8c6 22px);
  border: 1px solid rgba(26, 46, 34, .18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-photo span {
  font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
  color: #7a6a4e;
  text-transform: uppercase;
}

.topic-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: rgba(26, 46, 34, .16);
  border: 1px solid rgba(26, 46, 34, .16);
}

.topic-card {
  background: var(--white);
  min-height: 170px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  color: var(--forest);
  text-decoration: none;
  transition:
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.article-card:hover {
  border-color: rgba(196, 147, 58, .62);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(26, 46, 34, .08);
}

.article-card-title {
  font-family: "Newsreader", serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  margin: 0;
}

.article-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 14px 0 0;
}

.article-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 147, 58, .6);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.blog-article-body {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article-body h2 {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  margin: 34px 0 0;
}

.blog-article-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin: 18px 0 0;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid rgba(26, 46, 34, .16);
  background: transparent;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.accordion-title {
  font-family: "Newsreader", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
}

.route-subnav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 7vw;
  background: rgba(245, 237, 226, .94);
  border-bottom: 1px solid rgba(26, 46, 34, .12);
  backdrop-filter: blur(12px);
}

.route-subnav a {
  flex: none;
  color: var(--forest);
  text-decoration: none;
  border: 1px solid rgba(26, 46, 34, .14);
  border-radius: 40px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}

.motif {
  display: inline-block;
  width: var(--motif-size, 96px);
  height: auto;
  color: inherit;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.motif path,
.motif circle,
.motif ellipse,
.motif line,
.motif polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: inherit;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.motif-sm { --motif-size: 50px; }
.motif-md { --motif-size: 86px; }
.motif-lg { --motif-size: 128px; }
.motif-xl { --motif-size: 190px; }

.motif-divider {
  max-width: min(100%, var(--motif-size, 190px));
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed currentColor;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(245, 237, 226, .08), rgba(255, 255, 255, .28)),
    repeating-linear-gradient(135deg, rgba(26, 46, 34, .08) 0 8px, transparent 8px 18px);
  color: inherit;
}

.photo-placeholder::after {
  content: attr(data-photo);
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 2px;
  background: rgba(245, 237, 226, .82);
  color: var(--forest);
  font: 600 10px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.photo-placeholder--portrait {
  aspect-ratio: 2 / 3;
}

.photo-placeholder--landscape {
  aspect-ratio: 4 / 3;
}

.photo-placeholder--wide {
  aspect-ratio: 16 / 10;
}

.photo-placeholder--circle {
  aspect-ratio: 1;
  border-radius: 50%;
}

.real-image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(26, 46, 34, .08);
  isolation: isolate;
}

.real-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.real-image-frame--portrait { aspect-ratio: 2 / 3; }
.real-image-frame--landscape { aspect-ratio: 4 / 3; }
.real-image-frame--wide { aspect-ratio: 16 / 10; }
.real-image-frame--circle {
  aspect-ratio: 1;
  border-radius: 50%;
}

.home-motif-accent {
  position: absolute;
  pointer-events: none;
  color: currentColor;
  opacity: .72;
}

.home-card-flourish {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  color: currentColor;
  opacity: .22;
  pointer-events: none;
}

.home-program-card:nth-child(2n) .home-card-flourish {
  transform: rotate(90deg);
}

.home-program-card:nth-child(3n) .home-card-flourish {
  transform: rotate(180deg);
}

.home-program-card:nth-child(4n) .home-card-flourish {
  transform: rotate(270deg);
}

.footer-root-watermark {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: -60px;
  width: min(520px, 70vw);
  color: #F5EDE2;
  opacity: .08;
  pointer-events: none;
}

.page-grain-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity .35s ease;
}

@keyframes pk-reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pk-reveal-card {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes pk-image-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(1.025);
    filter: saturate(.85) blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1) blur(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pk-animate-ready .pk-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    filter: blur(8px);
    transition:
      opacity .82s cubic-bezier(.22, .61, .36, 1),
      transform .82s cubic-bezier(.22, .61, .36, 1),
      filter .82s cubic-bezier(.22, .61, .36, 1),
      box-shadow .24s ease,
      border-color .24s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .pk-animate-ready .pk-reveal-section {
    transform: translate3d(0, 32px, 0);
    filter: blur(10px);
  }

  .pk-animate-ready .pk-reveal-card {
    transform: translate3d(0, 22px, 0) scale(.985);
    filter: blur(7px);
  }

  .pk-animate-ready .pk-reveal-image {
    transform: translate3d(0, 20px, 0) scale(1.025);
    filter: saturate(.85) blur(8px);
  }

  .pk-animate-ready .pk-reveal-cta {
    transform: translate3d(0, 14px, 0) scale(.98);
    filter: blur(5px);
  }

  .pk-animate-ready .pk-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) saturate(1);
  }

  .pk-animate-ready .article-card.pk-reveal.is-visible:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pk-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.deckle-placeholder {
  filter: url(#deckle) drop-shadow(0 34px 70px rgba(0, 0, 0, .38));
}

.hand-note {
  display: inline-block;
  font-family: "Allura", cursive;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
  transform: rotate(-4deg);
}

.motif-heading-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.motif-heading-wrap .motif {
  color: var(--gold);
  opacity: .72;
}

.hero-brand-mark,
.hero-scroll-overlay {
  isolation: isolate;
}

.hero-brand-mark {
  display: inline-flex;
  align-items: baseline;
  padding: 12px 18px 14px;
  margin: -12px -18px -14px;
}

.hero-brand-mark::before,
.hero-text-scrim {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(245, 237, 226, .6) 0%, rgba(245, 237, 226, 0) 75%);
  filter: blur(10px);
}

.hero-brand-mark::before {
  inset: -16px -34px -18px -30px;
}

.hero-scroll-overlay {
  will-change: opacity;
}

.hero-overlay-content {
  position: relative;
  z-index: 1;
}

.hero-text-scrim {
  inset: var(--scrim-inset, -42px -58px);
  transform: var(--scrim-transform, none);
}

.hero-overlay-eyebrow,
.hero-overlay-headline,
.hero-overlay-support {
  will-change: opacity, transform, filter;
}

.hero-word {
  display: inline-block;
  will-change: opacity, transform, filter;
}

.hero-overlay-spacer {
  display: inline;
}

@media (max-width: 767px) {
  .display-title {
    font-size: clamp(38px, 13vw, 68px);
    line-height: .98;
  }

  .section-title {
    font-size: clamp(28px, 10vw, 46px);
    line-height: 1.06;
  }

  .body-large,
  .blog-article-body p {
    font-size: 16px;
    line-height: 1.68;
  }

  .gold-btn,
  .dark-btn,
  .ghost-btn {
    width: 100%;
  }

  .hero-scroll-overlay {
    max-width: min(86vw, 460px) !important;
  }

  .hero-overlay-headline {
    font-size: clamp(32px, 11vw, 54px) !important;
  }

  .hero-word {
    display: inline;
  }

  .hero-text-scrim {
    inset: var(--scrim-inset-mobile, -34px -36px);
    filter: blur(12px);
  }

  .motif-heading-wrap {
    grid-template-columns: 1fr;
  }

  .motif-heading-wrap .motif {
    display: none;
  }

  .photo-placeholder::after {
    left: 10px;
    right: 10px;
    bottom: 10px;
    text-align: center;
  }

  .home-card-flourish {
    width: 36px;
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 900px) {
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}
