:root {
  --forest: #233c2d;
  --forest-deep: #13271c;
  --moss: #607156;
  --sage: #a9b59b;
  --clay: #a55237;
  --ochre: #d59b4b;
  --cream: #f3ede2;
  --paper: #fbf8f1;
  --ink: #1d2620;
  --muted: #5d675f;
  --line: rgba(35, 60, 45, .2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --page: min(100% - 3rem, 1320px);
  --shadow: 0 24px 70px rgba(19, 39, 28, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
address { font-style: normal; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  background: white;
  color: var(--forest-deep);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--ochre); outline-offset: 4px; }

.section-pad { width: var(--page); margin-inline: auto; }
.section-kicker,
.eyebrow {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(3.2rem, 7.8vw, 7.7rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.6rem, 5.5vw, 5.8rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.65rem, 2.2vw, 2.7rem); letter-spacing: -.03em; }

.easy-only, .easy-label { display: none !important; }
body.easy-mode .standard-only,
body.easy-mode .standard-label { display: none !important; }
body.easy-mode .easy-only { display: block !important; }
body.easy-mode .easy-label { display: inline !important; }
body.easy-mode p { max-width: 60ch; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.2rem;
  padding: 1rem max(1.5rem, calc((100vw - 1320px) / 2));
  color: white;
  transition: background-color .35s ease, min-height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  min-height: 4.8rem;
  background: rgba(19, 39, 28, .96);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; color: inherit; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.85rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: .9rem;
  letter-spacing: -.05em;
}
.brand-name { font-family: var(--serif); font-size: .95rem; line-height: 1.03; }
.main-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2vw, 2.6rem); }
.main-nav a,
.main-nav button {
  position: relative;
  min-height: 2.75rem;
  padding: .65rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.language-toggle { padding-inline: 1rem !important; border: 1px solid rgba(255,255,255,.5) !important; border-radius: 999px !important; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest-deep);
  color: white;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 45%; filter: saturate(.86) contrast(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(9,27,17,.78) 0%, rgba(9,27,17,.35) 52%, rgba(9,27,17,.12) 100%), linear-gradient(0deg, rgba(9,27,17,.62) 0%, transparent 48%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(83rem, calc(100% - 3rem));
  margin: 0 auto;
  padding: 11rem 0 8rem;
}
.hero .eyebrow { color: #f1d9a8; }
.hero h1 { max-width: 1050px; margin-bottom: 1.5rem; }
.hero h1 em { color: #efcc8d; font-weight: 400; }
.hero-copy { max-width: 610px; margin: 0; font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: rgba(255,255,255,.86); }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.6rem; }
.button {
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--cream); color: var(--forest-deep); }
.button-light:hover { background: white; }
.button-dark { background: var(--forest-deep); color: white; }
.button-dark:hover { background: var(--clay); }
.text-link { display: inline-flex; gap: .75rem; align-items: center; font-weight: 700; text-underline-offset: .35em; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(.18rem, -.18rem); }
.text-link-light { color: white; }
.hero-aside {
  position: absolute;
  z-index: 2;
  right: max(1.5rem, calc((100vw - 1320px) / 2));
  bottom: 7.5rem;
  display: flex;
  align-items: end;
  gap: 1rem;
  max-width: 260px;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.55);
  font-size: .82rem;
  line-height: 1.35;
}
.hero-number { font-family: var(--serif); font-size: 3.6rem; line-height: .8; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.manifesto { position: relative; display: grid; grid-template-columns: 1.1fr .85fr; gap: 5rem 7vw; padding-top: 10rem; padding-bottom: 11rem; }
.manifesto-intro { grid-column: 1 / -1; display: grid; grid-template-columns: .42fr 1.58fr; gap: 2rem; align-items: start; }
.manifesto-intro h2 { max-width: 1050px; }
.manifesto-body { padding-left: 16%; }
.manifesto-body > p { max-width: 610px; margin-top: 0; font-size: 1.16rem; color: var(--muted); }
blockquote { margin: 4.5rem 0 0; padding: 2.2rem 0 0; border-top: 1px solid var(--line); }
blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.6rem); line-height: 1.18; }
blockquote cite { display: block; margin-top: 1.2rem; color: var(--muted); font-size: .8rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }
.manifesto-image { position: relative; margin: 0; }
.manifesto-image::before { content: ""; position: absolute; z-index: -1; inset: -2rem 22% 2rem -2rem; background: var(--cream); border-radius: 48% 48% 0 0; }
.manifesto-image img { aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.manifesto-image figcaption { margin-top: .85rem; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.pillars { padding: 9rem 0; background: var(--forest); color: white; }
.pillars .section-kicker { color: #efcc8d; }
.pillars-heading { display: grid; grid-template-columns: .42fr 1.58fr; gap: 2rem; margin-bottom: 5rem; }
.pillars-heading h2 { margin-bottom: 0; }
.pillar { display: grid; grid-template-columns: .2fr .8fr 1fr; gap: 2rem; align-items: start; padding: 3.2rem 0; border-top: 1px solid rgba(255,255,255,.25); }
.pillar:last-child { border-bottom: 1px solid rgba(255,255,255,.25); }
.pillar-index { color: #efcc8d; font-family: var(--serif); font-size: 1.15rem; }
.pillar h3, .pillar p { margin: 0; }
.pillar p { max-width: 620px; color: rgba(255,255,255,.74); font-size: 1.05rem; }

.rhythm-section { padding-top: 11rem; padding-bottom: 11rem; }
.rhythm-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; align-items: end; }
.rhythm-heading .section-kicker, .rhythm-heading h2 { grid-column: 1; }
.rhythm-heading > p:not(.section-kicker) { grid-column: 2; grid-row: 1 / span 2; align-self: end; max-width: 450px; color: var(--muted); font-size: 1.12rem; }
.rhythm-switch { display: inline-flex; margin: 4rem 0 3rem; border-bottom: 1px solid var(--line); }
.rhythm-switch button { min-height: 3.2rem; padding: .6rem 1.8rem; border: 0; border-bottom: 3px solid transparent; background: transparent; color: var(--muted); font-weight: 700; cursor: pointer; }
.rhythm-switch button[aria-selected="true"] { border-color: var(--clay); color: var(--ink); }
.day-line { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; margin: 0; padding: 2.4rem 0 0; list-style: none; }
.day-line::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 1px; background: var(--line); }
.day-line li { position: relative; padding-top: 1.1rem; }
.day-line li::before { content: ""; position: absolute; top: -2.75rem; left: 0; width: .65rem; height: .65rem; background: var(--clay); border: .45rem solid var(--paper); border-radius: 50%; box-shadow: 0 0 0 1px var(--clay); }
.time { display: block; color: var(--clay); font-size: .77rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.phase { display: block; margin: .35rem 0 .9rem; font-family: var(--serif); font-size: 1.75rem; }
.day-line p { margin: 0; color: var(--muted); font-size: .95rem; }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.season-grid article { min-height: 310px; padding: 2rem 1.5rem; border-right: 1px solid var(--line); }
.season-grid article:last-child { border: 0; }
.season-grid span { color: var(--clay); font-size: .77rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.season-grid h3 { margin: 5rem 0 1rem; font-size: 1.8rem; }
.season-grid p { margin: 0; color: var(--muted); }

.cycle-section { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 780px; background: var(--cream); }
.cycle-visual { min-height: 720px; }
.cycle-visual img { height: 100%; object-fit: cover; }
.cycle-content { align-self: center; max-width: 680px; padding: 6rem clamp(2rem, 7vw, 8rem); }
.cycle-content h2 { font-size: clamp(2.7rem, 4.8vw, 5rem); }
.cycle-content > p:not(.section-kicker) { color: var(--muted); font-size: 1.1rem; }
.cycle-steps { margin: 3.5rem 0 0; padding: 0; list-style: none; }
.cycle-steps li { display: grid; grid-template-columns: 3rem 1fr; align-items: center; padding: 1rem 0; border-top: 1px solid var(--line); }
.cycle-steps li:last-child { border-bottom: 1px solid var(--line); }
.cycle-steps span { color: var(--clay); font-family: var(--serif); }

.hofleben { padding-top: 11rem; padding-bottom: 11rem; }
.gallery-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 8vw; align-items: end; margin-bottom: 4rem; }
.gallery-heading h2 { margin-bottom: 0; }
.gallery-heading > p { max-width: 470px; color: var(--muted); font-size: 1.1rem; }
.photo-mosaic { display: grid; grid-auto-flow: dense; grid-auto-rows: 15rem; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.photo { position: relative; grid-column: span 4; grid-row: span 2; margin: 0; overflow: hidden; background: var(--cream); }
.photo-wide { grid-column: span 8; }
.photo-tall { grid-row: span 3; }
.photo img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.photo:hover img { transform: scale(1.025); }
.photo figcaption { position: absolute; right: .9rem; bottom: .9rem; left: .9rem; padding: .65rem .75rem; background: rgba(19,39,28,.82); color: white; font-size: .76rem; letter-spacing: .04em; backdrop-filter: blur(8px); }

.participation { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: center; padding-top: 7rem; padding-bottom: 9rem; border-top: 1px solid var(--line); overflow: hidden; }
.participation-number { color: rgba(165,82,55,.12); font-family: var(--serif); font-size: clamp(8rem, 22vw, 22rem); line-height: .7; letter-spacing: -.12em; }
.participation-copy h2 { font-size: clamp(2.8rem, 4.8vw, 5rem); }
.participation-copy > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.12rem; }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--ochre); }
.contact-image img { height: 100%; object-fit: cover; }
.contact-content { align-self: center; max-width: 690px; padding: 7rem clamp(2rem, 7vw, 8rem); }
.contact-content .section-kicker { color: var(--forest-deep); }
.contact-content > p:not(.section-kicker) { max-width: 540px; font-size: 1.1rem; }
.contact-content address { display: grid; gap: .65rem; margin: 2rem 0 2.5rem; font-size: 1.1rem; }
.contact-content address strong { font-family: var(--serif); font-size: 1.6rem; }
.contact-content address a { width: fit-content; font-weight: 700; text-underline-offset: .25em; }
.contact-actions { display: flex; align-items: center; gap: 2rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 4rem; padding: 4.5rem max(1.5rem, calc((100vw - 1320px) / 2)); background: var(--forest-deep); color: white; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand p { margin: 0; font-family: var(--serif); font-size: 1.2rem; line-height: 1.15; }
.footer-brand p span { color: rgba(255,255,255,.6); font-family: var(--sans); font-size: .75rem; }
.footer-links { display: flex; align-items: center; gap: 1.6rem; }
.footer-links a, .footer-links button { padding: .7rem 0; border: 0; background: transparent; color: inherit; font-size: .85rem; text-decoration: underline; text-underline-offset: .3em; cursor: pointer; }
.footer-note { grid-column: 1 / -1; margin: 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.5); font-size: .75rem; }

.legal-dialog { width: min(760px, calc(100% - 2rem)); max-height: min(88vh, 900px); padding: 0; border: 0; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.legal-dialog::backdrop { background: rgba(10,25,16,.72); backdrop-filter: blur(6px); }
.dialog-inner { position: relative; padding: clamp(2rem, 6vw, 5rem); }
.dialog-inner h2 { margin-bottom: 2.4rem; font-size: clamp(2.8rem, 6vw, 5rem); }
.dialog-inner h3 { margin: 2rem 0 .5rem; font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.dialog-close { position: sticky; z-index: 2; top: 1rem; float: right; display: grid; place-items: center; width: 3rem; height: 3rem; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--ink); font-size: 1.7rem; cursor: pointer; }
.legal-note { margin-top: 2.5rem; padding: 1.2rem; border-left: 4px solid var(--ochre); background: var(--cream); }
.mode-status { position: fixed; z-index: 200; right: 1rem; bottom: 1rem; max-width: 320px; padding: .85rem 1rem; background: var(--forest-deep); color: white; font-size: .9rem; opacity: 0; transform: translateY(1rem); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.mode-status.visible { opacity: 1; transform: none; }

.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --page: min(100% - 2rem, 760px); }
  .site-header { min-height: 5.2rem; padding-inline: 1rem; }
  .menu-toggle { z-index: 2; display: inline-flex; min-height: 2.8rem; align-items: center; gap: .7rem; padding: .6rem .8rem; border: 1px solid rgba(255,255,255,.5); background: transparent; color: white; cursor: pointer; }
  .menu-lines, .menu-lines::before { display: block; width: 1.2rem; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-lines { position: relative; }
  .menu-lines::before { content: ""; position: absolute; top: -.4rem; }
  .menu-toggle[aria-expanded="true"] .menu-lines { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines::before { top: 0; transform: rotate(-90deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.1rem; padding: 7rem 2rem 3rem; background: var(--forest-deep); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-family: var(--serif); font-size: clamp(2rem, 8vw, 4rem); font-weight: 400; }
  .language-toggle { margin-top: 1rem; }
  .hero-content { width: calc(100% - 2rem); padding-bottom: 9rem; }
  .hero-aside { display: none; }
  .manifesto, .manifesto-intro, .pillars-heading, .rhythm-heading, .gallery-heading, .participation { grid-template-columns: 1fr; }
  .manifesto { gap: 4rem; padding-top: 7rem; padding-bottom: 7rem; }
  .manifesto-intro h2 { grid-column: 1; }
  .manifesto-body { padding-left: 0; }
  .pillars { padding: 7rem 0; }
  .pillar { grid-template-columns: 4rem 1fr; }
  .pillar p { grid-column: 2; }
  .rhythm-section, .hofleben { padding-top: 7rem; padding-bottom: 7rem; }
  .rhythm-heading .section-kicker, .rhythm-heading h2, .rhythm-heading > p:not(.section-kicker) { grid-column: 1; grid-row: auto; }
  .day-line { grid-template-columns: 1fr; gap: 0; padding: 0 0 0 2rem; }
  .day-line::before { top: 0; right: auto; bottom: 0; left: .4rem; width: 1px; height: auto; }
  .day-line li { padding: 0 0 2.5rem 1rem; }
  .day-line li::before { top: .1rem; left: -2rem; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .season-grid article:nth-child(2) { border-right: 0; }
  .season-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cycle-section, .contact-section { grid-template-columns: 1fr; }
  .cycle-visual, .contact-image { min-height: 520px; }
  .cycle-content, .contact-content { max-width: none; }
  .participation { gap: 2rem; }
  .participation-number { font-size: 12rem; }
  .photo-mosaic { grid-auto-rows: 13rem; }
  .photo { grid-column: span 6; }
  .photo-wide { grid-column: span 12; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero { min-height: 760px; }
  .hero-shade { background: linear-gradient(0deg, rgba(9,27,17,.86) 0%, rgba(9,27,17,.3) 80%); }
  .hero-content { padding-top: 9rem; padding-bottom: 6.5rem; }
  .hero-actions, .contact-actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .scroll-cue { display: none; }
  .manifesto-image::before { inset: -1rem 10% 1rem -1rem; }
  .pillar { grid-template-columns: 2.7rem 1fr; gap: 1rem; padding: 2.3rem 0; }
  .rhythm-switch { display: flex; }
  .rhythm-switch button { flex: 1; padding-inline: 1rem; }
  .season-grid { grid-template-columns: 1fr; }
  .season-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .season-grid article:nth-child(3) { border-bottom: 1px solid var(--line); }
  .season-grid h3 { margin-top: 2rem; }
  .cycle-visual, .contact-image { min-height: 400px; }
  .cycle-content, .contact-content { padding: 5rem 1rem; }
  .gallery-heading { gap: 1rem; }
  .photo-mosaic { display: flex; gap: .75rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; }
  .photo, .photo-wide, .photo-tall { flex: 0 0 85%; height: 460px; scroll-snap-align: start; }
  .participation { padding-top: 5rem; padding-bottom: 6rem; }
  .participation-number { font-size: 8rem; }
  .site-footer { grid-template-columns: 1fr; gap: 2rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .footer-links { flex-wrap: wrap; }
  .footer-note { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #364039; --line: rgba(19,39,28,.55); }
  .hero-shade { background: rgba(9,27,17,.72); }
  .pillar p { color: white; }
}
