:root {
  --gwl-canvas: #f2ede4;
  --gwl-paper: rgba(252, 249, 243, 0.88);
  --gwl-paper-solid: #fbf8f2;
  --gwl-ink: #191915;
  --gwl-muted: #5e5b53;
  --gwl-line: rgba(25, 25, 21, 0.12);
  --gwl-accent: #55624a;
  --gwl-accent-soft: #dbe0d2;
  --gwl-sand: #cab89c;
  --gwl-shadow: 0 24px 80px rgba(22, 20, 15, 0.08);
  --gwl-shell: min(1280px, calc(100vw - 3rem));
  --gwl-radius-xl: 2rem;
  --gwl-radius-lg: 1.5rem;
  --gwl-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  --gwl-sans: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(85, 98, 74, 0.1), transparent 28rem),
    radial-gradient(circle at top right, rgba(202, 184, 156, 0.16), transparent 24rem),
    linear-gradient(180deg, #f5f0e7 0%, #f2ede4 48%, #efe8de 100%);
  color: var(--gwl-ink);
  font-family: var(--gwl-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(85, 98, 74, 0.18);
}

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

img {
  display: block;
  height: auto;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  left: 1rem;
  top: 1rem;
  width: auto;
  z-index: 100000;
  border-radius: 999px;
  background: var(--gwl-ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

.gwl-site-wrap {
  min-height: 100vh;
  position: relative;
}

.gwl-shell {
  margin: 0 auto;
  width: var(--gwl-shell);
}

.gwl-section {
  padding: 5rem 0;
}

.gwl-section--muted {
  background: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(25, 25, 21, 0.08);
  border-bottom: 1px solid rgba(25, 25, 21, 0.08);
}

.gwl-section--closing {
  padding-top: 0;
  padding-bottom: 6rem;
}

.gwl-section--tight-bottom {
  padding-top: 0;
  padding-bottom: 6rem;
}

.gwl-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.5));
  border: 1px solid var(--gwl-line);
  border-radius: var(--gwl-radius-xl);
  box-shadow: var(--gwl-shadow);
  backdrop-filter: blur(18px);
}

.gwl-stack-lg {
  display: grid;
  gap: 3rem;
}

.gwl-stack-md {
  display: grid;
  gap: 1rem;
}

.gwl-split,
.gwl-two-col {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.gwl-card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

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

.gwl-page-stack {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 78rem;
}

.gwl-eyebrow {
  align-items: center;
  color: var(--gwl-muted);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 500;
  gap: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.gwl-eyebrow::before {
  background: rgba(85, 98, 74, 0.6);
  content: "";
  display: inline-block;
  height: 1px;
  width: 2.5rem;
}

.gwl-side-label {
  color: var(--gwl-muted);
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.gwl-section-heading {
  max-width: 48rem;
}

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

.gwl-section-heading__copy {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.gwl-section-heading h2,
.gwl-home-hero__copy h1,
.gwl-page-hero__copy h1,
.gwl-closing-card__copy h2,
.gwl-empty-card h1,
.gwl-empty-card h2 {
  font-family: var(--gwl-serif);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
}

.gwl-section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.gwl-section-heading p,
.gwl-home-hero__copy p,
.gwl-page-hero__copy p,
.gwl-closing-card__copy p,
.gwl-info-card p,
.gwl-prose-card p,
.gwl-list-card p,
.gwl-empty-card p,
.gwl-site-footer p,
.gwl-form__status,
.gwl-bullet-line p,
.gwl-bullet-card p {
  color: var(--gwl-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0;
}

.gwl-site-header {
  backdrop-filter: blur(20px);
  background: rgba(242, 237, 228, 0.75);
  border-bottom: 1px solid rgba(25, 25, 21, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gwl-site-header__inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  height: 5rem;
  justify-content: space-between;
}

.gwl-brand {
  display: grid;
  gap: 0.15rem;
}

.gwl-brand__name,
.gwl-site-footer__title {
  font-family: var(--gwl-serif);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.gwl-brand__tag {
  color: var(--gwl-muted);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gwl-site-nav {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.gwl-site-nav__link,
.gwl-mobile-nav__link {
  border-radius: 999px;
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
  transition: all 180ms ease;
}

.gwl-site-nav__link:hover,
.gwl-mobile-nav__link:hover {
  color: var(--gwl-ink);
  background: var(--gwl-paper);
}

.gwl-site-nav__link.is-active,
.gwl-mobile-nav__link.is-active {
  background: var(--gwl-ink);
  color: var(--gwl-paper-solid);
}

.gwl-site-header__actions {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.gwl-site-header__cta {
  display: inline-flex;
}

.gwl-menu-toggle {
  display: none;
}

.gwl-menu-toggle,
.gwl-button {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  justify-content: center;
}

.gwl-button {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.95rem 1.4rem;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.gwl-button:hover {
  transform: translateY(-2px);
}

.gwl-button--primary {
  background: var(--gwl-ink);
  color: var(--gwl-paper-solid);
}

.gwl-button--secondary {
  background: var(--gwl-paper);
  border: 1px solid var(--gwl-line);
  color: var(--gwl-ink);
}

.gwl-button--secondary:hover {
  border-color: var(--gwl-accent);
  color: var(--gwl-accent);
}

.gwl-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gwl-mobile-nav {
  border-top: 1px solid var(--gwl-line);
  background: rgba(252, 249, 243, 0.95);
  box-shadow: var(--gwl-shadow);
}

.gwl-mobile-nav__inner {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0 1.5rem;
}

.gwl-mobile-nav__link {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--gwl-line);
  border-radius: var(--gwl-radius-lg);
  color: var(--gwl-ink);
  padding: 1rem 1.1rem;
}

.gwl-mobile-nav__link--cta {
  background: var(--gwl-accent);
  border-color: var(--gwl-accent);
  color: var(--gwl-paper-solid);
}

.gwl-home-hero {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.gwl-home-hero__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
}

.gwl-home-hero__main,
.gwl-home-hero__aside,
.gwl-page-hero__card {
  overflow: hidden;
  position: relative;
}

.gwl-home-hero__main::before,
.gwl-page-hero__card::before {
  background: radial-gradient(circle at top right, rgba(85, 98, 74, 0.13), transparent 28rem);
  content: "";
  inset: 0;
  position: absolute;
}

.gwl-home-hero__content,
.gwl-page-hero__content {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  padding: 3rem;
  position: relative;
}

.gwl-home-hero__copy,
.gwl-page-hero__copy {
  display: grid;
  gap: 1.5rem;
}

.gwl-home-hero__copy h1 {
  font-size: clamp(3.3rem, 8vw, 5.3rem);
}

.gwl-home-hero__copy p,
.gwl-page-hero__copy p {
  font-size: 1.35rem;
  line-height: 1.75;
  max-width: 48rem;
}

.gwl-home-hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
}

.gwl-home-hero__aside-copy {
  display: grid;
  gap: 1.5rem;
}

.gwl-signal-list {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gwl-signal-list li {
  border-bottom: 1px solid var(--gwl-line);
  font-family: var(--gwl-serif);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
  padding-bottom: 1.2rem;
}

.gwl-signal-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gwl-page-hero {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.gwl-page-hero__copy h1 {
  font-size: clamp(3rem, 7vw, 4.7rem);
}

.gwl-info-card,
.gwl-list-card,
.gwl-prose-card,
.gwl-form-card,
.gwl-manifesto-card,
.gwl-about-card,
.gwl-principles-card {
  padding: 2rem;
}

.gwl-info-card h2,
.gwl-info-card h3,
.gwl-manifesto-card h2,
.gwl-about-card h2,
.gwl-empty-card h1,
.gwl-empty-card h2,
.gwl-principles-card h2 {
  font-family: var(--gwl-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.gwl-info-card p,
.gwl-list-card p,
.gwl-prose-card p,
.gwl-form-card p {
  font-size: 1rem;
}

.gwl-prose {
  display: grid;
  gap: 1.5rem;
}

.gwl-prose h2,
.gwl-prose h3,
.gwl-prose h4 {
  font-family: var(--gwl-serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

.gwl-bullet-card,
.gwl-bullet-line {
  display: flex;
  gap: 1rem;
}

.gwl-bullet-card {
  padding: 1.5rem;
}

.gwl-bullet-card span,
.gwl-bullet-line span {
  background: var(--gwl-accent);
  border-radius: 999px;
  display: inline-flex;
  flex: none;
  height: 0.65rem;
  margin-top: 0.85rem;
  width: 0.65rem;
}

.gwl-bullet-line--sand span {
  background: var(--gwl-sand);
}

.gwl-pill {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--gwl-line);
  border-radius: 999px;
  color: var(--gwl-muted);
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  padding: 0.5rem 0.85rem;
  text-transform: uppercase;
}

.gwl-essay-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  padding: 1.75rem;
  transition: transform 180ms ease;
}

.gwl-essay-card:hover {
  transform: translateY(-4px);
}

.gwl-essay-card__body {
  display: grid;
  gap: 1.25rem;
}

.gwl-essay-card__copy {
  display: grid;
  gap: 0.85rem;
}

.gwl-essay-card__copy h3 {
  font-family: var(--gwl-serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

.gwl-essay-card__copy p {
  color: var(--gwl-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

.gwl-essay-card__status {
  color: var(--gwl-accent);
  font-size: 0.95rem;
  font-weight: 500;
}

.gwl-closing-card {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.5rem 3rem;
}

.gwl-closing-card__copy {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
}

.gwl-closing-card__copy h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.gwl-quote-card {
  padding: 2.75rem 3rem;
  text-align: center;
}

.gwl-quote-card p {
  font-family: var(--gwl-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.15;
  margin: 0 auto;
  max-width: 52rem;
}

.gwl-about-card {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
}

.gwl-subcard {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--gwl-line);
  border-radius: 1.75rem;
  padding: 1.5rem;
}

.gwl-subcard p {
  color: var(--gwl-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.gwl-email-link {
  display: inline-flex;
  font-family: var(--gwl-serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 1.25rem;
  transition: color 180ms ease;
}

.gwl-email-link:hover {
  color: var(--gwl-accent);
}

.gwl-form {
  display: grid;
  gap: 1.25rem;
}

.gwl-form__row,
.gwl-form__grid,
.gwl-form__actions {
  display: grid;
  gap: 1rem;
}

.gwl-form__row {
  grid-template-columns: minmax(0, 1fr) auto;
}

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

.gwl-form__actions {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.gwl-field {
  display: grid;
  gap: 0.5rem;
}

.gwl-field label {
  color: var(--gwl-muted);
  font-size: 0.95rem;
}

.gwl-form input,
.gwl-form textarea {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gwl-line);
  border-radius: 1.5rem;
  color: var(--gwl-ink);
  font: inherit;
  outline: none;
  padding: 0.95rem 1rem;
  width: 100%;
}

.gwl-form input {
  min-height: 3.25rem;
}

.gwl-form__row input {
  border-radius: 999px;
  padding-left: 1.25rem;
}

.gwl-form input:focus,
.gwl-form textarea:focus {
  border-color: var(--gwl-accent);
}

.gwl-inline-link {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  color: var(--gwl-accent);
  display: inline-block;
  padding-bottom: 0.15rem;
  transition: opacity 180ms ease;
}

.gwl-inline-link:hover {
  opacity: 0.7;
}

.gwl-site-footer {
  border-top: 1px solid var(--gwl-line);
  padding: 3rem 0;
}

.gwl-site-footer__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
}

.gwl-site-footer__brand {
  display: grid;
  gap: 1rem;
}

.gwl-site-footer__column h2 {
  color: var(--gwl-muted);
  font-family: var(--gwl-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.gwl-site-footer__column ul {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gwl-site-footer__column a {
  transition: color 180ms ease;
}

.gwl-site-footer__column a:hover {
  color: var(--gwl-accent);
}

.gwl-empty-card {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 48rem;
  padding: 3rem;
  text-align: center;
}

.gwl-empty-card h1,
.gwl-empty-card h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 1120px) {
  .gwl-card-grid--essays {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gwl-home-hero__grid,
  .gwl-split,
  .gwl-two-col,
  .gwl-site-footer__inner,
  .gwl-about-card {
    grid-template-columns: 1fr;
  }

  .gwl-closing-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .gwl-site-nav,
  .gwl-site-header__cta {
    display: none;
  }

  .gwl-menu-toggle {
    align-items: center;
    background: var(--gwl-paper);
    border: 1px solid var(--gwl-line);
    border-radius: 999px;
    display: inline-flex;
    flex-direction: column;
    gap: 0.32rem;
    height: 2.75rem;
    justify-content: center;
    width: 2.75rem;
  }

  .gwl-menu-toggle span:not(.screen-reader-text) {
    background: currentColor;
    display: block;
    height: 1px;
    width: 1rem;
  }
}

@media (max-width: 720px) {
  :root {
    --gwl-shell: min(1280px, calc(100vw - 1.5rem));
  }

  .gwl-section,
  .gwl-section--closing,
  .gwl-section--tight-bottom {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .gwl-home-hero {
    padding-top: 2rem;
  }

  .gwl-home-hero__content,
  .gwl-page-hero__content,
  .gwl-home-hero__aside,
  .gwl-info-card,
  .gwl-list-card,
  .gwl-prose-card,
  .gwl-form-card,
  .gwl-manifesto-card,
  .gwl-about-card,
  .gwl-principles-card,
  .gwl-closing-card,
  .gwl-empty-card {
    padding: 1.5rem;
  }

  .gwl-home-hero__copy h1,
  .gwl-page-hero__copy h1,
  .gwl-closing-card__copy h2,
  .gwl-empty-card h1,
  .gwl-empty-card h2 {
    line-height: 1.02;
  }

  .gwl-home-hero__copy p,
  .gwl-page-hero__copy p {
    font-size: 1.1rem;
    line-height: 1.75;
  }

  .gwl-card-grid,
  .gwl-card-grid--compact,
  .gwl-card-grid--essays,
  .gwl-card-grid--three,
  .gwl-form__grid,
  .gwl-form__row,
  .gwl-form__actions {
    grid-template-columns: 1fr;
  }

  .gwl-essay-card__copy h3 {
    font-size: 1.6rem;
  }

  .gwl-signal-list li {
    font-size: 1.65rem;
  }
}
