:root {
  --ink: #17332d;
  --ink-soft: #34524b;
  --forest: #1d594c;
  --forest-deep: #123d35;
  --sage: #bfd0c6;
  --mist: #edf2ee;
  --paper: #fbfaf5;
  --paper-warm: #f4f0e6;
  --sun: #e4a853;
  --line: rgba(23, 51, 45, 0.18);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 61, 53, 0.15);
  --shell: min(1160px, calc(100% - 2.5rem));
  --radius: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 0.5rem;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-role {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.main-navigation a {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.main-navigation a:not(.nav-cta):hover,
.main-navigation a:not(.nav-cta):focus-visible {
  color: var(--forest);
}

.simple-navigation a {
  font-size: 0.92rem;
  font-weight: 800;
  text-underline-offset: 0.25em;
}

.nav-cta {
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 9vw, 8rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  width: 36rem;
  height: 36rem;
  right: -11rem;
  bottom: -18rem;
  content: "";
  background: var(--paper-warm);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

h1 span {
  color: var(--forest);
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 35rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 650;
  line-height: 1.45;
}

.hero-text {
  max-width: 36rem;
  color: var(--ink-soft);
}

.hero-event-link {
  display: grid;
  max-width: 36rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding: 0.85rem 1rem;
  color: var(--forest-deep);
  background: var(--paper-warm);
  border-left: 4px solid var(--sun);
  border-radius: 0 0.7rem 0.7rem 0;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.hero-event-link span:first-child {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-evolving-note {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.site-evolving-note strong {
  color: var(--forest);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--forest);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--forest);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 61, 53, 0.14);
}

.photo-placeholder {
  position: relative;
  min-height: 33rem;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 35%),
    radial-gradient(circle at 70% 22%, rgba(228, 168, 83, 0.75), transparent 19%),
    linear-gradient(135deg, #4c7c6e 0%, #1c5146 50%, #123d35 100%);
  border-radius: min(3vw, 2.25rem);
  box-shadow: var(--shadow);
}

.photo-placeholder::before,
.photo-placeholder::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.photo-placeholder::before {
  width: 22rem;
  height: 22rem;
  right: -6rem;
  bottom: -6rem;
  background: rgba(237, 242, 238, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.photo-placeholder::after {
  width: 14rem;
  height: 14rem;
  left: -5rem;
  top: 4rem;
  background: rgba(228, 168, 83, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.photo-placeholder.has-photo::before,
.photo-placeholder.has-photo::after {
  display: none;
}

.photo-placeholder.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-photo.has-photo img {
  object-position: 50% 27%;
}

.secondary-photo.has-photo img {
  object-position: 50% 28%;
}

.photo-guidance {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
  background: rgba(18, 61, 53, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.photo-guidance strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.photo-guidance small {
  color: rgba(255, 255, 255, 0.78);
}

.photo-label {
  color: #f4d9a8;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-placeholder figcaption {
  position: absolute;
  z-index: 2;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.3rem 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(18, 61, 53, 0.72);
  border-radius: 0.35rem;
  font-size: 0.68rem;
  line-height: 1.2;
  backdrop-filter: blur(4px);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.prose {
  max-width: 44rem;
  color: var(--ink-soft);
}

.prose-large {
  font-size: clamp(1rem, 1.3vw, 1.13rem);
}

.profile-name {
  margin: -0.55rem 0 0;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.draft-hint {
  padding: 1rem 1.2rem;
  color: var(--ink-soft);
  background: var(--mist);
  border-left: 4px solid var(--sage);
  font-size: 0.9rem;
}

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

.motivation-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.photo-placeholder-portrait {
  min-height: 40rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 35%),
    radial-gradient(circle at 68% 28%, rgba(228, 168, 83, 0.7), transparent 18%),
    linear-gradient(155deg, #5d887b 0%, #2e6659 52%, #173f37 100%);
}

.motivation-copy {
  max-width: 41rem;
}

.statement {
  margin-bottom: 1.7rem;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.35;
}

.motivation-closing {
  margin-top: 1.8rem;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.section-heading p:last-child {
  max-width: 36rem;
  color: var(--ink-soft);
}

.topic-teaser {
  max-width: 38rem;
  padding: 1.2rem 1.35rem;
  background: var(--mist);
  border-left: 4px solid var(--sun);
  border-radius: 0 0.8rem 0.8rem 0;
}

.topic-teaser p {
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.topic-card {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.place-photo {
  position: relative;
  height: clamp(18rem, 38vw, 34rem);
  margin: 0;
  overflow: hidden;
  background: var(--forest-deep);
}

.place-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(18, 61, 53, 0.34), transparent 45%);
  pointer-events: none;
}

.place-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 57%;
}

.topic-card p {
  color: var(--ink-soft);
}

.topic-number {
  margin-bottom: 1rem;
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 700;
}

.status-label {
  align-self: flex-start;
  margin-top: 1.1rem;
  padding: 0.3rem 0.65rem;
  color: currentColor;
  background: rgba(191, 208, 198, 0.28);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--white);
  background: var(--forest-deep);
  border-radius: var(--radius);
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-card-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.event-card-secondary .event-date {
  color: var(--forest-deep);
  background: var(--mist);
}

.event-card-secondary .event-date small,
.event-card-secondary .event-copy p:last-child {
  color: var(--ink-soft);
}

.event-card.event-card-secondary .section-kicker,
.event-card-secondary .event-copy .event-meta {
  color: var(--forest);
}

.event-date {
  display: grid;
  width: 7rem;
  min-height: 8rem;
  place-content: center;
  color: var(--forest-deep);
  background: var(--sun);
  border-radius: 1rem;
  text-align: center;
}

.event-date span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 0.9;
}

.event-date span.event-date-range {
  font-size: 2.15rem;
}

.event-date strong {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-date small {
  margin-top: 0.15rem;
  color: rgba(18, 61, 53, 0.72);
}

.event-copy h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.event-copy p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.event-copy .event-meta {
  margin-bottom: 0.45rem;
  color: #f2c87f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.event-card .section-kicker {
  color: #f2c87f;
}

.event-card .text-link {
  color: var(--white);
}

.text-link {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
  white-space: nowrap;
}

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

.section-dark .section-kicker {
  color: #f2c87f;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.contact-copy {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.contact-address {
  margin: 1.15rem 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
}

.contact-address a {
  color: var(--white);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.contact-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  padding: 2rem 0;
  color: var(--ink-soft);
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 82% 25%, rgba(228, 168, 83, 0.2), transparent 18rem),
    var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.page-hero h1 {
  margin-bottom: 0;
}

.page-hero .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.page-hero p:last-child {
  max-width: 36rem;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.narrow-shell {
  max-width: 850px;
}

.question-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--mist);
  border-left: 5px solid var(--sun);
  border-radius: var(--radius);
}

.question-callout h2 {
  margin-bottom: 1rem;
}

.question-callout-lead,
.question-callout-copy {
  color: var(--ink-soft);
}

.question-callout-lead {
  max-width: 24rem;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.question-callout-copy > p:first-child {
  margin-top: 0;
}

.question-callout-copy > p:last-child {
  margin-bottom: 0;
}

.question-callout-address {
  margin: 1rem 0 1.25rem;
  color: var(--forest-deep);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 800;
}

.question-callout-address a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

.empty-state {
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.empty-state h2 {
  max-width: 38rem;
}

.empty-state p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.legal-page {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.legal-page > .shell > h1 {
  margin-bottom: 2.5rem;
}

.legal-page section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-page section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.legal-page section p {
  max-width: 48rem;
  color: var(--ink-soft);
}

.small-copy {
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner > div {
  display: grid;
}

.footer-inner span,
.footer-inner a {
  font-size: 0.86rem;
}

.footer-inner nav {
  display: flex;
  gap: 1.25rem;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .menu-button {
    position: relative;
    z-index: 30;
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.8rem;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 800;
  }

  .menu-button-lines,
  .menu-button-lines::before,
  .menu-button-lines::after {
    display: block;
    width: 1.1rem;
    height: 2px;
    content: "";
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-button-lines {
    position: relative;
  }

  .menu-button-lines::before {
    position: absolute;
    top: -0.33rem;
  }

  .menu-button-lines::after {
    position: absolute;
    top: 0.33rem;
  }

  .menu-button[aria-expanded="true"] .menu-button-lines {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] .menu-button-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    inset: 5.75rem 1rem auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation a {
    padding: 0.8rem 0.9rem;
  }

  .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero-grid,
  .motivation-grid {
    grid-template-columns: 1fr;
  }

  .motivation-copy {
    scroll-margin-top: 6rem;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .hero-photo {
    min-height: min(39rem, 85vw);
  }

  .split-layout,
  .section-heading,
  .contact-grid,
  .page-hero-inner,
  .question-callout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-hero .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 18rem;
  }

  .event-card {
    grid-template-columns: auto 1fr;
  }

  .event-card .text-link {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 1.4rem, 1160px);
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .brand {
    display: grid;
    gap: 0;
    line-height: 1.1;
  }

  .main-navigation {
    top: 5.25rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-event-link {
    grid-template-columns: 1fr auto;
  }

  .hero-event-link span:first-child {
    grid-column: 1 / -1;
  }

  .photo-placeholder {
    min-height: 29rem;
    border-radius: 1.35rem;
  }

  .photo-guidance {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .photo-placeholder-portrait {
    min-height: 34rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .event-copy h3 {
    overflow-wrap: anywhere;
  }

  .event-date {
    width: 100%;
    min-height: 6rem;
    grid-template-columns: auto auto auto;
    align-items: baseline;
    gap: 0.5rem;
  }

  .event-card .text-link {
    grid-column: 1;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .button-row,
  .photo-guidance {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .hero {
    padding: 2rem 0;
  }

  .photo-placeholder {
    min-height: 12rem;
    background: #eee;
    box-shadow: none;
  }
}
