:root {
  --pine: #10382d;
  --pine-deep: #09281f;
  --pine-soft: #1d4b3d;
  --cream: #f5f2e9;
  --paper: #fbfaf6;
  --ink: #17332a;
  --moss: #afc58e;
  --moss-light: #dce7cb;
  --line: rgba(16, 56, 45, 0.18);
  --white-line: rgba(255, 255, 255, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px max(32px, calc((100vw - 1180px) / 2));
  color: white;
  transition: background .25s ease, color .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--ink);
  background: rgba(251, 250, 246, .94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  position: relative;
  display: inline-block;
  width: 190px;
  height: 34px;
  flex: 0 0 auto;
  overflow: visible;
}
.brand-logo-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity .25s ease;
}
.brand-logo-sage { z-index: 1; }
.brand-logo-main-light,
.brand-logo-main-dark { z-index: 2; }
.brand-logo-main-light { opacity: 0; }
.brand-logo-main-dark { opacity: 1; }
.site-header[data-header]:not(.scrolled) .brand-logo-main-light { opacity: 1; }
.site-header[data-header]:not(.scrolled) .brand-logo-main-dark { opacity: 0; }
.footer-brand .brand-logo { width: 180px; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-size: .9rem;
  font-weight: 550;
  text-decoration: none;
}
.site-nav a:not(.nav-cta):hover { opacity: .65; }
.nav-cta {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .7fr);
  align-items: center;
  gap: 7vw;
  min-height: 92vh;
  padding: 150px max(32px, calc((100vw - 1180px) / 2)) 90px;
  overflow: hidden;
  color: white;
  background: var(--pine);
}
.hero::before {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  right: -34vw;
  top: -30vw;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255,255,255,.025), 0 0 0 16vw rgba(255,255,255,.018);
}
.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--pine-soft);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .eyebrow, .light-text { color: var(--moss-light); }
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.2vw, 6.8rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--moss); font-weight: 400; }
.hero-intro {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--pine-deep); background: var(--moss); }
.button-primary:hover { background: #c5d7a8; }
.button-outline { border-color: var(--pine); color: var(--pine); background: transparent; }
.button-outline:hover { color: white; background: var(--pine); }
.button-light { color: var(--pine-deep); background: var(--cream); }
.text-link { color: white; font-weight: 650; text-underline-offset: 5px; }
.hero-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 200px 200px 22px 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
}
.perspective-visual {
  display: grid;
  flex: 1;
  place-items: center;
  min-height: 270px;
  padding-top: 22px;
}
.perspective-visual svg {
  display: block;
  width: min(100%, 310px);
  overflow: visible;
}
.perspective-circle {
  fill: rgba(255,255,255,.018);
  stroke: rgba(255,255,255,.42);
  stroke-width: 1.2;
}
.perspective-lens {
  fill: rgba(175,197,142,.19);
  stroke: var(--moss);
  stroke-width: 1.5;
}
.perspective-point { fill: rgba(245,242,233,.72); }
.perspective-point-center { fill: var(--moss); }
.hero-principles {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-principles p {
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.section { padding: 120px max(32px, calc((100vw - 1180px) / 2)); }
.section-label {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: rgba(16,56,45,.65);
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-label.light { color: rgba(255,255,255,.65); border-color: var(--white-line); }
.intro-band { padding: 110px max(32px, calc((100vw - 1180px) / 2)) 120px; background: var(--cream); }
.intro-statement { display: grid; grid-template-columns: .55fr 1.45fr; gap: 60px; padding: 72px 0 85px; }
.intro-statement p { margin: 6px 0 0; color: rgba(16,56,45,.65); }
.intro-statement h2, .section-copy h2, .about-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.7vw, 4.3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 310px; padding: 34px; border-right: 1px solid var(--line); }
.service-card:first-child { padding-left: 0; }
.service-card:last-child { border-right: 0; padding-right: 0; }
.service-card > span { color: rgba(16,56,45,.5); font-size: .74rem; }
.service-card h3 { max-width: 280px; margin: 70px 0 16px; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; line-height: 1.15; }
.service-card p { max-width: 320px; color: rgba(16,56,45,.72); }
.service-card a { display: inline-block; margin-top: 14px; font-size: .9rem; font-weight: 700; text-underline-offset: 5px; }

.beratung { background: var(--paper); }
.split-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; padding-top: 75px; }
.section-copy p:not(.eyebrow) { max-width: 680px; color: rgba(16,56,45,.73); font-size: 1.05rem; }
.section-copy .button { margin-top: 24px; }
.topic-list { align-self: end; padding: 36px; background: var(--cream); }
.list-title { margin: 0 0 15px; font-weight: 750; }
.topic-list ul { margin: 0; padding: 0; list-style: none; }
.topic-list li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.topic-list li span { color: rgba(16,56,45,.48); font-size: .75rem; padding-top: 3px; }

.workshops { color: white; background: var(--pine-deep); }
.workshops-heading { display: grid; grid-template-columns: .5fr 1.1fr .65fr; gap: 5vw; align-items: end; }
.workshops-heading .section-label { grid-column: 1 / -1; }
.workshops-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
.workshops-heading > p { margin: 0 0 8px; color: rgba(255,255,255,.68); }
.workshop-list { margin-top: 75px; border-top: 1px solid var(--white-line); }
.workshop-item { display: grid; grid-template-columns: .5fr 1.75fr; gap: 5vw; padding: 42px 0; border-bottom: 1px solid var(--white-line); }
.workshop-number { color: var(--moss); font-family: var(--serif); font-size: 2.4rem; }
.workshop-type { margin: 0 0 7px; color: var(--moss); font-size: .73rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.workshop-item h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; line-height: 1.12; }
.workshop-item div > p:last-child { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.64); }
.custom-workshop { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; margin-top: 90px; padding: 55px; color: var(--pine-deep); background: var(--moss); }
.custom-workshop h3 { max-width: 650px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.08; }
.custom-workshop > div:last-child { align-self: end; }
.custom-workshop .button { margin-top: 18px; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; padding-top: 72px; }
.about-portrait { position: relative; width: min(100%, 430px); margin: 0; }
.about-portrait picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1;
}
.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 50%;
  filter: saturate(.88) contrast(.98);
}
.about-portrait figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 24px 0 0;
}
.about-portrait figcaption strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.about-copy p:not(.eyebrow) { color: rgba(16,56,45,.72); }
.credentials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.credentials span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 650; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; color: white; background: var(--pine); }
.contact h2 { max-width: 560px; margin: 0 0 25px; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.04em; }
.contact-intro > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.contact-mail { display: inline-block; margin-top: 25px; color: var(--moss); font-size: 1.1rem; text-underline-offset: 6px; }
.contact-form { padding: 42px; color: var(--ink); background: var(--paper); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 20px; font-size: .84rem; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--pine); box-shadow: 0 2px 0 var(--pine); }
.checkbox-label { grid-template-columns: 20px 1fr; align-items: start; font-weight: 450 !important; line-height: 1.45; }
.checkbox-label input { margin-top: 4px; accent-color: var(--pine); }
.checkbox-label a { text-underline-offset: 3px; }
.contact-form .button { border: 0; color: white; background: var(--pine); }
.form-note { margin: 10px 0 0; color: rgba(16,56,45,.6); font-size: .76rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 35px;
  padding: 45px max(32px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: .78rem;
}
.footer-links { display: flex; gap: 20px; }
.footer-note { grid-column: 1 / -1; margin: 8px 0 0; color: rgba(16,56,45,.52); }

.legal-page { min-height: 100vh; padding: 140px max(24px, calc((100vw - 840px) / 2)) 90px; background: var(--paper); }
.legal-page .site-header { color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-content h1 { font-family: var(--serif); font-size: clamp(2.7rem, 6vw, 4.8rem); font-weight: 400; letter-spacing: -.04em; }
.legal-content h2 { margin-top: 45px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.legal-content p, .legal-content li { color: rgba(16,56,45,.75); }
.placeholder { padding: 20px; border-left: 4px solid #b36f42; background: #f7eadf; color: #713f20 !important; }
.back-link { display: inline-block; margin-top: 45px; font-weight: 700; text-underline-offset: 5px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 900px) {
  :root { --container: calc(100vw - 40px); }
  .site-header { padding: 17px 20px; }
  .menu-button { position: relative; z-index: 2; display: grid; gap: 6px; width: 44px; height: 44px; place-content: center; border: 1px solid currentColor; border-radius: 50%; background: transparent; }
  .menu-button span:not(.sr-only) { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: none; flex-direction: column; justify-content: center; gap: 25px; color: white; background: var(--pine-deep); }
  .site-nav.open { display: flex; }
  .site-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
  .nav-cta { border: 0; padding: 0; }
  .site-header.menu-open { color: white; }
  .hero { grid-template-columns: 1fr; gap: 60px; min-height: auto; padding: 135px 20px 75px; }
  .hero-card { min-height: 390px; max-width: 460px; width: 100%; justify-self: center; }
  .intro-band, .section { padding: 85px 20px; }
  .intro-statement, .split-layout, .about-grid, .contact { grid-template-columns: 1fr; gap: 55px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child, .service-card:last-child { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card h3 { margin-top: 35px; }
  .workshops-heading { grid-template-columns: 1fr; gap: 30px; }
  .workshop-item { grid-template-columns: 80px 1fr; }
  .custom-workshop { grid-template-columns: 1fr; padding: 35px; }
  .about-portrait { justify-self: center; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; }
  .footer-note { grid-column: auto; }
}

@media (max-width: 560px) {
  .brand-logo { width: 160px; height: 29px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-card { min-height: 350px; padding: 28px; }
  .perspective-visual { min-height: 220px; padding-top: 12px; }
  .hero-principles p { font-size: 1.2rem; }
  .intro-statement { padding: 55px 0; }
  .split-layout { padding-top: 55px; }
  .topic-list { padding: 25px 20px; }
  .workshop-item { grid-template-columns: 1fr; gap: 10px; }
  .workshop-number { font-size: 1.6rem; }
  .custom-workshop { margin-left: -20px; margin-right: -20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 30px 22px; }
}
