:root {
  --pine: #214f42;
  --pine-dark: #12362d;
  --moss: #7a8f45;
  --leaf: #dfe850;
  --butter: #f3f5c7;
  --paper: #fbfaf0;
  --mist: #eff1df;
  --white: #ffffff;
  --ink: #17241f;
  --muted: #617069;
  --line: rgba(33, 79, 66, 0.16);
  --shadow: 0 22px 60px rgba(18, 54, 45, 0.16);
  --anchor-offset: 142px;
  --font-body: "Mulish", "Helvetica Neue", Arial, sans-serif;
  --font-heading: Baskerville, "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 118px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(246, 247, 206, 0.98);
  border-bottom: 4px solid var(--leaf);
  box-shadow: 0 10px 26px rgba(18, 54, 45, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  flex: 0 1 680px;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 220px;
  color: var(--pine);
  text-decoration: none;
}

.brand-mark {
  width: 76px;
  height: auto;
}

.brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(23px, 2.45vw, 34px);
  line-height: 1.08;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--pine-dark);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.35;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: clamp(12px, 2.3vw, 30px);
  color: var(--pine);
  font-size: 17px;
  font-weight: 700;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--moss);
}

.hero {
  display: grid;
  min-height: clamp(560px, 74svh, 780px);
  align-items: center;
  justify-items: end;
  padding: clamp(48px, 6vw, 84px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(18, 54, 45, 0.02), rgba(18, 54, 45, 0.08) 38%, rgba(18, 54, 45, 0.34) 100%),
    url("assets/conny-schlueter-hero.png") left top / cover;
  color: var(--white);
}

.hero-content {
  display: grid;
  justify-items: start;
  max-width: 680px;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 4px;
  padding: 8px 12px;
  background: rgba(33, 79, 66, 0.9);
  color: var(--leaf);
  font-size: clamp(14px, 1.4vw, 19px);
  text-transform: none;
}

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

h1,
h2 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  color: var(--pine);
  font-size: clamp(28px, 3.7vw, 50px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: var(--pine-dark);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.16;
}

.hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--pine);
  font-size: clamp(18px, 2vw, 22px);
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 5px 18px rgba(18, 54, 45, 0.52);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--leaf);
  color: var(--pine-dark);
}

.button.primary:hover {
  background: #f1f76d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section {
  padding: clamp(62px, 9vw, 116px) clamp(18px, 6vw, 88px);
  scroll-margin-top: var(--anchor-offset);
}

.top-anchor {
  display: block;
  position: absolute;
  top: 0;
}

.welcome-banner,
.about,
.contact-section,
.quiet-band {
  display: grid;
  gap: clamp(28px, 6vw, 84px);
}

.welcome-banner {
  padding-top: clamp(24px, 3.4vw, 40px);
  padding-bottom: clamp(24px, 3.4vw, 40px);
  background: var(--butter);
}

.welcome-content {
  display: grid;
  max-width: 920px;
  width: 100%;
  justify-items: start;
  text-align: left;
}

.welcome-content .eyebrow {
  justify-self: start;
  text-align: left;
}

.welcome-content h2 {
  width: 100%;
  justify-self: start;
  text-align: left;
}

.welcome-content > p:not(.eyebrow) {
  width: min(860px, 100%);
  justify-self: start;
  text-align: left;
}

.course-banner {
  padding: 13px clamp(18px, 6vw, 88px);
  border-bottom: 2px solid rgba(142, 57, 46, 0.34);
  background: #f3d6d0;
  color: #692c25;
}

.course-banner-inner {
  display: flex;
  max-width: 1180px;
  align-items: center;
  gap: 14px 22px;
  margin: 0 auto;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.45;
}

.course-banner-summary {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
}

.course-banner strong {
  color: #692c25;
  font-weight: 900;
  white-space: nowrap;
}

.course-banner span {
  color: #7a3a32;
}

.course-link,
.course-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(105, 44, 37, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  color: #692c25;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.course-link {
  margin-left: auto;
  padding: 8px 12px;
}

.course-link:hover,
.course-register:hover {
  background: rgba(255, 255, 255, 0.68);
}

.course-register {
  padding: 9px 13px;
}

.section-heading,
.about-copy,
.contact-copy {
  max-width: 760px;
}

.welcome-content p,
.about-copy p,
.quiet-band p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-form,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.services {
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
  background: var(--paper);
}

.section-heading {
  margin-bottom: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-active {
  border-color: rgba(122, 143, 69, 0.52);
  box-shadow: 0 26px 70px rgba(18, 54, 45, 0.2);
  transform: translateY(-3px);
}

.service-card:focus-visible {
  outline: 3px solid rgba(223, 232, 80, 0.8);
  outline-offset: 4px;
}

.service-card.is-active {
  background: var(--pine);
  color: var(--white);
}

.service-card.is-active h3 {
  color: var(--white);
}

.service-card h3 {
  min-height: 2.32em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.is-active p,
.service-card.is-active .service-more {
  color: rgba(255, 255, 255, 0.86);
}

.service-more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 28px;
  color: var(--pine);
  font-weight: 800;
}

.service-more::after {
  content: "";
  width: 22px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
}

.service-detail {
  margin-top: clamp(34px, 5vw, 70px);
}

.service-detail-panel {
  --service-accent: #c78ac4;
  --service-tint: #cfa0cd;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  max-width: 1320px;
  background: var(--white);
  box-shadow: none;
}

.service-detail-panel-coaching {
  --service-accent: #63c2bd;
  --service-tint: #a0d8d5;
}

.service-detail-panel-yoga {
  --service-accent: #f5ad2e;
  --service-tint: #ffd17d;
}

.service-detail-image {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  background: var(--service-tint);
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.service-detail-copy {
  max-width: 720px;
}

.service-detail-panel h3 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--service-accent);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.1vw, 64px);
  line-height: 1.08;
}

.service-detail-panel p {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.service-detail-panel ul {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 26px 0 0;
  padding-left: 22px;
  color: var(--pine-dark);
  font-size: 18px;
}

.service-back {
  display: inline;
  margin-top: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #2862a5;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.service-back:hover {
  color: var(--pine);
}

.yoga-course-section {
  margin-top: clamp(36px, 5vw, 64px);
  scroll-margin-top: var(--anchor-offset);
}

.yoga-course-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.yoga-course-card {
  display: grid;
  gap: 22px;
  max-width: 1120px;
  border: 1px solid rgba(105, 44, 37, 0.16);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: #f8e6e1;
  color: #692c25;
}

.yoga-course-card p {
  max-width: 780px;
  margin: 0;
  color: #7a3a32;
  font-size: 18px;
}

.yoga-course-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
}

.yoga-course-data div {
  display: grid;
  gap: 2px;
  min-width: 0;
  border-top: 1px solid rgba(105, 44, 37, 0.18);
  padding-top: 12px;
}

.yoga-course-data dt {
  color: rgba(105, 44, 37, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yoga-course-data dd {
  margin: 0;
  color: #692c25;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.yoga-course-card .course-register {
  width: max-content;
  border-color: rgba(105, 44, 37, 0.34);
  background: rgba(255, 255, 255, 0.54);
}

.quiet-band {
  display: block;
  padding-top: clamp(20px, 2.6vw, 32px);
  padding-bottom: clamp(20px, 2.6vw, 32px);
  background: var(--pine);
  color: var(--white);
}

.quiet-band .eyebrow {
  color: var(--white);
  margin-bottom: 6px;
}

.quiet-content {
  display: grid;
  max-width: 920px;
  gap: 10px;
  align-items: start;
  text-align: left;
}

.quiet-content h2,
.quiet-content p {
  margin: 0;
}

.quiet-content h2 {
  color: var(--white);
}

.quiet-content p {
  color: rgba(255, 255, 255, 0.84);
}

.about {
  display: flow-root;
  padding-top: clamp(36px, 5vw, 62px);
  padding-bottom: clamp(36px, 5vw, 62px);
  background: var(--mist);
}

.about-image {
  float: left;
  width: min(42%, 520px);
  height: clamp(340px, 34vw, 500px);
  margin: 0 clamp(28px, 5vw, 72px) 26px 0;
  border-radius: 8px;
  background:
    linear-gradient(rgba(33, 79, 66, 0.06), rgba(33, 79, 66, 0.06)),
    url("assets/conny-schlueter-about.jpg") center / cover;
}

.about .about-copy {
  max-width: none;
}

.more-about-toggle,
.more-about-collapse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--pine);
  font: inherit;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
  text-decoration: none;
}

.more-about-toggle {
  display: flex;
  width: max-content;
  margin: 8px auto 0;
}

.more-about-toggle:hover,
.more-about-collapse:hover {
  color: var(--pine-dark);
}

.more-about-collapse {
  margin: 0;
}

.more-about-actions {
  clear: both;
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.summary-open {
  display: none;
}

.more-about-toggle.is-open .summary-closed {
  display: none;
}

.more-about-toggle.is-open .summary-open {
  display: inline;
}

.more-about-content {
  clear: both;
  width: min(960px, 100%);
  margin: 26px auto 0;
  padding: 24px;
  border-left: 4px solid var(--leaf);
  background: rgba(255, 255, 255, 0.62);
  text-align: left;
}

.cv-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.cv-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cv-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cv-list dt {
  color: var(--pine);
  font-weight: 900;
}

.cv-list dd {
  margin: 0;
  color: var(--muted);
}

.cv-list dd p {
  margin: 0 0 10px;
}

.cv-list dd p:last-child {
  margin-bottom: 0;
}

.contact-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 560px);
  align-items: start;
  padding-top: clamp(42px, 5.8vw, 70px);
  padding-bottom: clamp(42px, 5.8vw, 70px);
  background: var(--paper);
}

.contact-section > * {
  min-width: 0;
}

address {
  margin: 0;
  color: var(--pine-dark);
  font-style: normal;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
  color: var(--pine);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  color: var(--pine-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(33, 79, 66, 0.22);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pine);
  outline: 3px solid rgba(122, 143, 69, 0.24);
}

.form-note {
  margin: 4px 0 0;
  color: #a33a31;
  font-size: 14px;
}

.privacy {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.privacy input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--pine-dark);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h1 {
  color: var(--pine);
  font-size: clamp(42px, 7vw, 84px);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(28px, 4vw, 44px);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  padding-left: 22px;
}

@media (max-width: 1120px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: 720px;
  }
}

@media (max-width: 1040px) {
  :root {
    --anchor-offset: 176px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .brand {
    flex: none;
    width: min(680px, 100%);
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    align-items: end;
    min-height: clamp(500px, 68svh, 680px);
    background-position: left top;
  }

  .hero-content {
    justify-items: end;
    max-width: min(540px, 58vw);
    text-align: right;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    min-height: 0;
  }

  .service-detail-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-detail-copy {
    max-width: none;
  }

}

@media (max-width: 820px) {
  .hero {
    display: block;
    min-height: 0;
    padding: min(57.7vw, 474px) clamp(18px, 6vw, 88px) 42px;
    background:
      url("assets/conny-schlueter-hero.png") top center / 100% auto no-repeat,
      linear-gradient(180deg, var(--pine), var(--pine-dark));
  }

  .hero-content {
    max-width: 100%;
    margin-left: 0;
  }

  .hero .eyebrow {
    margin-top: 0;
  }

  .welcome-banner,
  .about,
  .contact-section,
  .quiet-band {
    grid-template-columns: 1fr;
  }

  .quiet-content {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

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

  .course-link {
    margin-left: 0;
  }

  .yoga-course-data {
    grid-template-columns: 1fr;
  }

  .about-image {
    float: none;
    width: 100%;
    height: clamp(280px, 64vw, 420px);
    margin: 0 0 24px;
  }

  .more-about-toggle,
  .more-about-content {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  :root {
    --anchor-offset: 184px;
  }

  .site-header {
    gap: 16px;
  }

  .brand {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
  }

  .brand-mark {
    width: 56px;
  }

  .brand strong {
    font-size: clamp(21px, 7vw, 30px);
  }

  .brand small {
    font-size: 13px;
  }

  .nav {
    gap: 10px 16px;
    font-size: 15px;
  }

  .hero {
    padding-top: 57.7vw;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    max-width: 100%;
  }

  .service-detail {
    margin-top: 34px;
  }

  .service-detail-image {
    padding: 22px;
  }

  .service-detail-panel h3 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .hero .eyebrow {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .contact-section {
    gap: 28px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cv-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
  }
}
