/*
 * Website: Melissa Spiegl-Guerrero
 * Umsetzung: Social Webwork · Wolfgang Hofer
 * Stand: 2026-06-21
 */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-v21-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-v21-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-v19-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-cream: #f6f1ec;
  --color-brown: #4a3a33;
  --color-terracotta: #a84f35;
  --color-sand: #d8c1ae;
  --color-white: #fffaf6;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", Arial, sans-serif;
  --header-height: 6.35rem;
  --anchor-offset: 2.5rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--color-brown);
  background: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

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

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  background: var(--color-brown);
  color: var(--color-white);
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background-color .32s ease, border-color .32s ease, box-shadow .32s ease, backdrop-filter .32s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgb(246 241 236 / 92%);
  border-bottom-color: rgb(216 193 174 / 34%);
  box-shadow: 0 10px 28px rgb(74 58 51 / 5%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  width: min(100% - clamp(2rem, 6.5vw, 6.25rem), 1480px);
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(2.5rem, 7vw, 7.5rem);
  transition: min-height .32s ease;
}

.site-header.is-scrolled .header-inner { min-height: 4.95rem; }

.brand {
  display: inline-flex;
  flex-direction: column;
  padding-top: clamp(1.25rem, 2.15vw, 1.75rem);
  flex: 0 0 auto;
  text-decoration: none;
  transition: padding-top .32s ease;
}

.site-header.is-scrolled .brand { padding-top: .95rem; }

.brand-name {
  font-family: var(--font-display);
  color: var(--color-terracotta);
  font-size: clamp(2.05rem, 2.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.025em;
  transition: font-size .32s ease, color .32s ease;
}

.site-header.is-scrolled .brand-name { font-size: clamp(1.72rem, 2.05vw, 2.28rem); }

.brand-subline {
  margin-top: .56rem;
  color: var(--color-brown);
  font-size: clamp(.78rem, .9vw, .96rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .46em;
  transition: font-size .32s ease, margin-top .32s ease, letter-spacing .32s ease;
}

.site-header.is-scrolled .brand-subline {
  margin-top: .42rem;
  font-size: clamp(.68rem, .75vw, .78rem);
  letter-spacing: .36em;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgb(74 58 51 / 32%);
  border-radius: 999px;
  background: rgb(246 241 236 / 74%);
  color: var(--color-brown);
}

.nav-toggle-line {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 3.2vw, 3.5rem);
  padding-top: clamp(1.45rem, 2.25vw, 1.9rem);
  transition: padding-top .32s ease;
}

.site-header.is-scrolled .site-nav { padding-top: 1.35rem; }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.8vw, 3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  color: var(--color-brown);
  font-size: clamp(.86rem, .95vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgb(246 241 236 / 42%);
}

.nav-list a:hover { color: var(--color-terracotta); }

.hero {
  position: relative;
  min-height: clamp(46rem, 100svh, 64rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--color-cream);
}

.hero-picture,
.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture { z-index: -2; }

.hero-picture img {
  object-fit: cover;
  object-position: 64% 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgb(246 241 236 / 12%), rgb(246 241 236 / 12%)),
    linear-gradient(90deg, rgb(246 241 236 / 96%) 0%, rgb(246 241 236 / 84%) 24%, rgb(246 241 236 / 36%) 40%, rgb(246 241 236 / 10%) 58%, rgb(246 241 236 / 3%) 78%, rgb(246 241 236 / 0%) 100%),
    linear-gradient(180deg, rgb(246 241 236 / 0%) 0%, rgb(246 241 236 / 0%) 24%, rgb(246 241 236 / 5%) 100%);
}

.hero-content {
  width: min(100% - clamp(2rem, 6.5vw, 6.25rem), 1480px);
  min-height: clamp(46rem, 100svh, 64rem);
  margin: 0 auto;
  padding-top: clamp(16rem, 27svh, 20rem);
  padding-bottom: clamp(3rem, 6svh, 4.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-quote {
  max-width: clamp(22rem, 27vw, 28rem);
  margin: 0;
  font-family: var(--font-display);
}

.hero-quote p {
  margin: 0;
  color: var(--color-brown);
  font-size: clamp(1.72rem, 2.56vw, 2.74rem);
  line-height: 1.16;
  letter-spacing: -.035em;
}

.hero-quote footer {
  margin-top: 1rem;
  color: rgb(74 58 51 / 68%);
  font-size: clamp(.92rem, 1.15vw, 1.16rem);
  line-height: 1.35;
  letter-spacing: .01em;
}

.hero-quote cite { font-style: normal; }

.hero-rule {
  width: 4.6rem;
  height: 2px;
  margin: clamp(1.45rem, 2.8svh, 2rem) 0 0;
  background: var(--color-terracotta);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.55rem;
  margin-bottom: clamp(3rem, 6svh, 4.8rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: .95rem 1.75rem;
  border: 1px solid var(--color-terracotta);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.button.is-disabled {
  cursor: default;
  opacity: 1;
}

.button.is-disabled:hover { transform: none; }

.button-primary {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 16px 30px rgb(168 79 53 / 20%);
}

.button-primary:hover { background: #8f422b; border-color: #8f422b; }

.button-secondary {
  background: rgb(246 241 236 / 48%);
  border-color: #9a482f;
  color: #9a482f;
}

.button-secondary:hover {
  background: #9a482f;
  border-color: #9a482f;
  color: var(--color-white);
}

.button.is-disabled.button-primary:hover { background: var(--color-terracotta); border-color: var(--color-terracotta); }

.button.is-disabled.button-secondary:hover {
  background: rgb(246 241 236 / 48%);
  border-color: #9a482f;
  color: #9a482f;
}

.hero-note {
  position: relative;
  max-width: 28rem;
  margin: 0;
  padding-left: 4.9rem;
  font-size: clamp(1.05rem, 1.22vw, 1.2rem);
  line-height: 1.5;
  letter-spacing: .01em;
}

.hero-note::before {
  content: "";
  position: absolute;
  left: .25rem;
  top: .15rem;
  width: 2.7rem;
  height: 2.7rem;
  border-left: 2px solid var(--color-terracotta);
  border-bottom: 2px solid var(--color-terracotta);
  border-radius: 0 0 0 2.4rem;
  opacity: .72;
  transform: rotate(-34deg);
}

@media (min-width: 1200px) {
  .hero-content {
    padding-top: calc(clamp(16rem, 27svh, 20rem) + clamp(2.5rem, 3.5svh, 4.35rem));
  }
}

@media (max-width: 1120px) {
  .header-inner { gap: 2rem; }
  .brand-name { font-size: 2rem; }
  .brand { padding-top: 1.35rem; }
  .site-nav { padding-top: 1.45rem; }
  .brand-subline { letter-spacing: .28em; }
  .site-nav { gap: 1.4rem; }
  .nav-list { gap: 1.2rem; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgb(246 241 236 / 10%), rgb(246 241 236 / 10%)),
      linear-gradient(90deg, rgb(246 241 236 / 96%) 0%, rgb(246 241 236 / 82%) 32%, rgb(246 241 236 / 34%) 52%, rgb(246 241 236 / 8%) 72%, rgb(246 241 236 / 0%) 100%);
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 4.85rem;
    --anchor-offset: 2.4rem;
  }
  .site-header {
    position: fixed;
    background: rgb(246 241 236 / 96%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgb(216 193 174 / 55%);
  }
  .header-inner {
    width: min(100% - clamp(2.1rem, 5.4vw, 3.6rem), 1480px);
    min-height: var(--header-height);
    align-items: center;
  }
  .site-header.is-scrolled .header-inner { min-height: var(--header-height); }
  .site-header.is-scrolled .brand { padding-top: 0; }
  .site-header.is-scrolled .brand-name { font-size: clamp(1.62rem, 3.1vw, 1.78rem); }
  .site-header.is-scrolled .brand-subline { margin-top: .34rem; font-size: clamp(.66rem, 1.25vw, .72rem); letter-spacing: .16em; }
  .site-header.is-scrolled .site-nav { padding-top: 1rem; }
  .brand { padding-top: 0; }
  .brand-name { font-size: clamp(1.62rem, 3.1vw, 1.78rem); }
  .brand-subline { margin-top: .34rem; font-size: clamp(.66rem, 1.25vw, .72rem); letter-spacing: .16em; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 3px;
    width: 2.75rem;
    height: 2.75rem;
    margin-top: .05rem;
    background: rgb(255 250 246 / 78%);
  }
  .site-nav {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    left: auto;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: .35rem;
    width: min(22rem, 100%);
    box-sizing: border-box;
    padding: .72rem .95rem;
    background: rgb(250 246 241 / 98.5%);
    border: 1px solid rgb(216 193 174 / 58%);
    border-radius: 0 0 1.05rem 1.05rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 12px 26px rgb(74 58 51 / 8%);
  }
  .site-header.is-open .site-nav { display: flex; }
  .nav-list { align-items: stretch; flex-direction: column; gap: .15rem; }
  .nav-list a { display: block; padding: .42rem .35rem; }
  .hero { min-height: clamp(36rem, 82svh, 48rem); max-height: none; }
  .hero-picture img { object-position: 64% 22%; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgb(246 241 236 / 7%), rgb(246 241 236 / 7%)),
      linear-gradient(180deg, rgb(246 241 236 / 68%) 0%, rgb(246 241 236 / 42%) 32%, rgb(246 241 236 / 12%) 58%, rgb(246 241 236 / 3%) 100%),
      linear-gradient(90deg, rgb(246 241 236 / 72%) 0%, rgb(246 241 236 / 18%) 70%);
  }
  .hero-content {
    width: min(100% - 1.25rem, 1480px);
    min-height: clamp(36rem, 82svh, 48rem);
    max-height: none;
    padding-top: calc(var(--header-height) + 2.6rem);
    padding-bottom: 1.7rem;
    justify-content: flex-start;
  }
  .hero-quote { max-width: 31rem; }
  .hero-quote p { font-size: clamp(1.38rem, 4.9vw, 2.12rem); line-height: 1.2; }
}

@media (min-width: 1041px) and (max-width: 1199px) and (orientation: landscape) {
  .hero-content {
    padding-top: calc(clamp(16rem, 27svh, 20rem) + clamp(1.25rem, 2.4svh, 2.5rem));
  }
}

@media (min-width: 900px) and (max-width: 1040px) and (orientation: landscape) {
  .hero {
    min-height: clamp(43rem, 100svh, 48rem);
  }

  .hero-picture img {
    object-position: 65% 20%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgb(246 241 236 / 8%), rgb(246 241 236 / 8%)),
      linear-gradient(90deg, rgb(246 241 236 / 94%) 0%, rgb(246 241 236 / 78%) 25%, rgb(246 241 236 / 32%) 42%, rgb(246 241 236 / 5%) 60%, rgb(246 241 236 / 0%) 100%),
      linear-gradient(180deg, rgb(246 241 236 / 0%) 0%, rgb(246 241 236 / 0%) 68%, rgb(246 241 236 / 4%) 100%);
  }

  .hero-content {
    width: min(100% - clamp(3.2rem, 6vw, 4.8rem), 1480px);
    min-height: clamp(43rem, 100svh, 48rem);
    padding-top: calc(clamp(10.5rem, 20svh, 13rem) + clamp(1.25rem, 2svh, 2.25rem));
    padding-bottom: clamp(2.4rem, 4svh, 3.2rem);
  }

  .hero-quote {
    max-width: clamp(22rem, 31vw, 26rem);
  }

  .hero-quote p {
    font-size: clamp(1.8rem, 3.3vw, 2.24rem);
    line-height: 1.16;
  }

}

@media (min-width: 690px) and (max-width: 899px) and (orientation: landscape) {
  .hero-content {
    padding-top: calc(var(--header-height) + 3.15rem);
  }

  .hero-quote {
    max-width: min(26rem, 43vw);
  }

  .hero-quote p {
    font-size: clamp(1.36rem, 3.9vw, 1.92rem);
    line-height: 1.18;
  }
}

@media (min-width: 561px) and (max-width: 1040px) and (orientation: portrait) {
  .hero {
    min-height: 0;
    max-height: none;
    overflow: visible;
    isolation: auto;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    background: linear-gradient(180deg, var(--color-cream) 0%, #f2e9e1 100%);
  }

  .hero-picture {
    position: relative;
    inset: auto;
    z-index: auto;
    width: 100%;
    height: clamp(27rem, 52svh, 40rem);
    overflow: hidden;
    background: var(--color-sand);
  }

  .hero-picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 58% 22%;
  }

  .hero-overlay { display: none; }

  .hero-content {
    width: min(100% - clamp(3rem, 9vw, 5.5rem), 48rem);
    min-height: 0;
    padding-top: clamp(2.4rem, 5.5vw, 3.8rem);
    padding-bottom: clamp(3rem, 6.5vw, 4.6rem);
    align-items: stretch;
    background: transparent;
  }

  .hero-quote {
    max-width: 34rem;
  }

  .hero-quote p {
    font-size: clamp(1.85rem, 4.8vw, 2.65rem);
    line-height: 1.17;
  }

  .hero-quote footer {
    margin-top: .8rem;
    font-size: clamp(.92rem, 2vw, 1.08rem);
  }

  .hero-rule {
    width: 4.2rem;
    margin-top: clamp(1.25rem, 3vw, 1.85rem);
  }


  .button {
    min-height: 3.25rem;
    padding: .82rem 1.35rem;
    font-size: .82rem;
    letter-spacing: .1em;
  }

  .hero-note {
    width: 100%;
    max-width: none;
    padding-left: 4.25rem;
    font-size: clamp(1rem, 2.35vw, 1.15rem);
  }

  .hero-note::before {
    left: .1rem;
    width: 2.45rem;
    height: 2.45rem;
  }
}

@media (min-width: 768px) and (max-width: 819px) and (orientation: portrait) {
  .hero-note {
    display: none;
  }
}

@media (min-width: 820px) and (max-width: 1040px) and (orientation: portrait) {
  .hero::before {
    content: "";
    position: absolute;
    top: var(--header-height);
    left: 0;
    z-index: 1;
    width: min(50%, 31rem);
    height: clamp(31rem, 47svh, 37rem);
    pointer-events: none;
    background: linear-gradient(90deg, rgb(246 241 236 / 34%) 0%, rgb(246 241 236 / 16%) 46%, rgb(246 241 236 / 0%) 82%);
  }

  .hero-picture {
    height: clamp(31rem, 47svh, 37rem);
  }

  .hero-picture img {
    object-position: 59% 22%;
  }

  .hero-content {
    position: absolute;
    top: calc(var(--header-height) + clamp(5.4rem, 7.95svh, 7.1rem));
    left: clamp(3.6rem, 7.2vw, 5.6rem);
    z-index: 2;
    width: min(36vw, 23.5rem);
    min-height: 0;
    margin: 0;
    padding: 0;
    align-items: flex-start;
  }

  .hero-quote {
    width: 100%;
    max-width: none;
  }

  .hero-quote p {
    font-size: clamp(1.78rem, 3.22vw, 2.34rem);
    line-height: 1.13;
    letter-spacing: -.034em;
  }

  .hero-quote footer {
    margin-top: .68rem;
    font-size: clamp(.84rem, 1.35vw, .98rem);
  }

  .hero-rule {
    display: none;
  }

  .button-secondary {
    background: rgb(246 241 236 / 36%);
  }

  .button.is-disabled.button-secondary:hover {
    background: rgb(246 241 236 / 36%);
  }

  .hero-note {
    display: none;
  }
}

@media (min-width: 820px) and (max-width: 899px) and (orientation: portrait) {
  .hero-content {
    top: calc(var(--header-height) + clamp(5.6rem, 8.2svh, 7.35rem));
    width: min(34vw, 22rem);
  }

  .hero-quote p {
    font-size: clamp(1.68rem, 3vw, 2.16rem);
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 4.28rem;
  }
  .header-inner {
    width: 100%;
    box-sizing: border-box;
    padding-left: clamp(1.2rem, 5.6vw, 1.45rem);
    padding-right: .75rem;
  }
  .brand-name,
  .site-header.is-scrolled .brand-name { font-size: clamp(1.29rem, 5.45vw, 1.38rem); }
  .brand-subline,
  .site-header.is-scrolled .brand-subline { margin-top: .28rem; font-size: .58rem; letter-spacing: .075em; }
  .site-header {
    position: sticky;
    background: rgb(246 241 236 / 98%);
  }
  .header-inner {
    min-height: var(--header-height);
    align-items: center;
  }
  .brand { justify-content: center; }
  .nav-toggle {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border-color: transparent;
    background: transparent;
  }
  .nav-toggle::before {
    content: "";
    position: absolute;
    inset: .17rem;
    z-index: 0;
    border: 1px solid rgb(74 58 51 / 22%);
    border-radius: 999px;
    background: rgb(255 250 246 / 76%);
  }
  .nav-toggle-line {
    position: relative;
    z-index: 1;
    width: 1rem;
    height: 2px;
    margin: 0;
    border-radius: 999px;
  }
  .site-nav {
    right: .75rem;
    width: min(18.5rem, calc(100vw - 1.5rem));
    padding: .66rem .82rem;
    background: rgb(250 246 241 / 99%);
  }
  .hero {
    min-height: 0;
    overflow: visible;
    isolation: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-picture {
    position: relative;
    inset: auto;
    z-index: auto;
    width: 100%;
    height: clamp(12.25rem, 30svh, 16.25rem);
    overflow: hidden;
    background: var(--color-sand);
  }
  .hero-picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 58% 22%;
  }
  .hero-overlay { display: none; }
  .hero-content {
    width: 100%;
    min-height: 0;
    padding: clamp(1.05rem, 4.4vw, 1.55rem) clamp(1.15rem, 5.4vw, 1.55rem) clamp(1.45rem, 5.8vw, 2.05rem);
    background: linear-gradient(180deg, var(--color-cream) 0%, #f2e9e1 100%);
    align-items: stretch;
  }
  .hero-quote { max-width: 22rem; }
  .hero-quote p { font-size: clamp(1.18rem, 6.25vw, 1.48rem); line-height: 1.16; }
  .hero-quote footer { margin-top: .42rem; font-size: .8rem; }
  .hero-rule { display: none; }
  .button { width: 100%; min-height: 2.36rem; padding: .44rem .85rem; font-size: .7rem; letter-spacing: .058em; }
  .button-secondary { background: transparent; }
  .button.is-disabled.button-secondary:hover { background: transparent; }
  .hero-note { padding-left: 0; font-size: .92rem; line-height: 1.38; }
  .hero-note::before { display: none; }
}

.content-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: var(--color-cream);
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

.section-muted {
  background: linear-gradient(180deg, #f2e9e1 0%, var(--color-cream) 100%);
}

.section-contact {
  background: linear-gradient(180deg, #f5ede5 0%, #ead8ca 100%);
}

.section-inner {
  width: min(100% - clamp(2rem, 6.5vw, 6.25rem), 1180px);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: .7rem;
  color: var(--color-terracotta);
  font-family: var(--font-body);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.content-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}

h3 {
  margin: 0;
  font-family: var(--font-body);
  color: rgb(74 58 51 / 74%);
  font-size: clamp(.92rem, 1vw, 1.02rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .105em;
  text-transform: uppercase;
}


.content-section p {
  margin: .82rem 0 0;
}

.content-section :is(h2, h3) + :is(p, ul, ol) {
  margin-top: .58rem;
}

.content-section :is(h2, h3) + p.lead {
  margin-top: .66rem;
}

.content-section a:not(.button) {
  color: #8f422b;
  text-underline-offset: .18em;
}

.lead {
  color: rgb(74 58 51 / 86%);
  font-size: clamp(1.15rem, 1.7vw, 1.36rem);
  line-height: 1.65;
}

.section-welcome {
  padding-top: clamp(3.2rem, 5.6vw, 5rem);
  padding-bottom: clamp(4.75rem, 8vw, 7.5rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, .78fr);
  gap: clamp(2.4rem, 6vw, 6.25rem);
  align-items: start;
}

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

.welcome-copy { max-width: 50rem; }

.content-section h2.section-kicker {
  margin-bottom: .72rem;
  font-family: var(--font-body);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .16em;
}

.section-welcome .welcome-copy p {
  font-size: clamp(1rem, 1.05vw, 1.06rem);
  line-height: 1.72;
}

.section-welcome .welcome-thesis + p {
  margin-top: .1rem;
}

.content-button { margin-top: 2rem; }

.concern-card,
.info-card,
.soft-panel,
.timeline-card,
.membership-panel,
.crisis-panel {
  border: 1px solid rgb(216 193 174 / 56%);
  background: rgb(255 250 246 / 62%);
  box-shadow: 0 22px 50px rgb(74 58 51 / 5%);
}

.concern-card,
.timeline-card,
.soft-panel,
.membership-panel,
.crisis-panel { padding: clamp(1.35rem, 3vw, 2.4rem); }

.concern-list,
.check-list,
.timeline-list {
  margin: .95rem 0 0;
  padding: 0;
  list-style: none;
}

.concern-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem 1.2rem;
}

.section-welcome .concern-card {
  margin-top: .45rem;
  padding: clamp(1.15rem, 2vw, 1.75rem);
  background: rgb(255 250 246 / 34%);
  border-color: rgb(216 193 174 / 34%);
  box-shadow: 0 10px 26px rgb(74 58 51 / 2.5%);
}

.section-welcome .concern-card h3 {
  margin: 0;
}

.section-welcome .concern-list {
  grid-template-columns: 1fr;
  gap: .54rem;
  color: rgb(74 58 51 / 80%);
  font-size: .96rem;
  line-height: 1.48;
}

.section-welcome .concern-list li::before {
  width: .34rem;
  height: .34rem;
  background: rgb(168 79 53 / 76%);
}

.concern-list li,
.check-list li {
  position: relative;
  padding-left: 1.25rem;
}

.concern-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: var(--color-terracotta);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(14rem, .52fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 4.6vw, 4.4rem);
  row-gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
}

.about-image-card {
  width: min(100%, 20rem);
  justify-self: end;
  overflow: hidden;
  background: var(--color-sand);
  box-shadow: 0 18px 40px rgb(74 58 51 / 7%);
}

.about-image-card img {
  width: 100%;
  height: clamp(17.5rem, 27vw, 23rem);
  object-fit: cover;
  object-position: 50% 24%;
}


.about-copy { max-width: 47rem; }
.about-copy p:first-of-type { margin-top: 0; }
.about-copy p:last-of-type { margin-bottom: 0; }

.timeline-card {
  grid-column: 1 / -1;
  width: min(100%, 56rem);
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.timeline-card h3 { margin: 0; }

.timeline-list { margin-top: .5rem; }

.timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(4.65rem, 5.4rem) minmax(0, 42rem);
  gap: clamp(.55rem, 1.15vw, .9rem);
  max-width: 49rem;
  padding: .68rem 0 .74rem;
  border-top: 1px solid rgb(74 58 51 / 10%);
  color: rgb(74 58 51 / 84%);
  line-height: 1.56;
}

.timeline-list li:first-child { border-top: 0; }

.timeline-list span {
  color: rgb(168 79 53 / 78%);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .018em;
}

.training-card {
  margin-top: clamp(-1.8rem, -2.8vw, -1.1rem);
  padding-top: 0;
}

.training-accordion {
  max-width: 49rem;
}

.training-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: .88rem 2.1rem .88rem 0;
  border-top: 1px solid rgb(74 58 51 / 10%);
  border-bottom: 1px solid rgb(74 58 51 / 8%);
  color: rgb(74 58 51 / 78%);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(.92rem, 1vw, 1.02rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .105em;
  list-style: none;
  text-transform: uppercase;
}

.training-accordion summary::-webkit-details-marker {
  display: none;
}

.training-accordion summary::before,
.training-accordion summary::after {
  content: "";
  position: absolute;
  right: .18rem;
  top: 50%;
  width: .78rem;
  height: 1px;
  background: rgb(168 79 53 / 82%);
  transform: translateY(-50%);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.training-accordion summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.training-accordion[open] summary {
  border-bottom-color: transparent;
}

.training-accordion[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.training-accordion summary:hover {
  color: var(--color-brown);
}

.training-accordion summary:focus-visible {
  outline: 3px solid rgb(201 111 75 / 45%);
  outline-offset: 4px;
}

.training-accordion-content {
  padding: .95rem 0 1.35rem;
}

.training-list {
  display: grid;
  gap: .62rem;
  margin: 0;
  padding: 0;
  color: rgb(74 58 51 / 82%);
  line-height: 1.58;
  list-style: none;
}

.training-list li {
  position: relative;
  padding-left: 1.05rem;
}

.training-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: .32rem;
  height: .32rem;
  border-radius: 999px;
  background: rgb(168 79 53 / 66%);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.card-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.info-card { padding: clamp(1.4rem, 2.5vw, 2.2rem); }

.soft-panel { margin-top: clamp(1.1rem, 2vw, 1.5rem); }

.offer-inner { max-width: 62rem; }

.offer-section {
  background: #f5ece4;
}

.offer-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4.5vw, 4.4rem);
  align-items: start;
  max-width: 54rem;
}

.offer-column {
  min-width: 0;
}

.offer-column .offer-text-block + .offer-text-block {
  margin-top: clamp(1rem, 2vw, 1.55rem);
}

.offer-text-block p {
  max-width: 42rem;
}

.offer-section .section-kicker {
  margin-bottom: clamp(.85rem, 1.8vw, 1.35rem);
}

.offer-help-text {
  min-width: 0;
}

.offer-image {
  overflow: hidden;
  margin: clamp(1.2rem, 2.4vw, 1.8rem) 0 0;
  border-radius: 0.4rem;
  box-shadow: 0 1.1rem 2.6rem rgb(74 58 51 / 10%);
}

.offer-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.offer-section p.offer-note {
  max-width: 42rem;
  margin-top: 2rem;
}

.offer-text-block h3 {
  margin: 0;
}

.offer-section .check-list,
.offer-section .concern-list {
  max-width: 45rem;
  margin-top: .72rem;
}

.offer-section .concern-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .62rem clamp(1.2rem, 3vw, 2rem);
}

.offer-section .concern-list li,
.offer-section .check-list li {
  color: rgb(74 58 51 / 82%);
  line-height: 1.58;
}

.legal-page {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(2.4rem, 5vw, 4rem));
  background: linear-gradient(180deg, var(--color-cream) 0%, #f8f2ed 100%);
}

.legal-content {
  max-width: 48rem;
}

.legal-content h1 {
  margin: 0 0 clamp(1.15rem, 2.4vw, 1.8rem);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
}

.legal-content h2 {
  margin: clamp(1.55rem, 2.8vw, 2.2rem) 0 .48rem;
  font-family: var(--font-body);
  color: rgb(74 58 51 / 88%);
  font-size: clamp(1.15rem, 1.6vw, 1.42rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .01em;
}

.legal-content h3 {
  margin: clamp(1.1rem, 2vw, 1.55rem) 0 .38rem;
  color: rgb(74 58 51 / 82%);
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
}

.legal-content p {
  max-width: 44rem;
  margin: 0 0 .88rem;
  color: rgb(74 58 51 / 82%);
}

.legal-content a:not(.button) {
  color: var(--color-terracotta);
  text-underline-offset: .18em;
}

.legal-checkpoint {
  margin: clamp(1.2rem, 2.4vw, 1.8rem) 0;
  padding: 1rem 1.15rem;
  border-left: .22rem solid var(--color-terracotta);
  background: rgb(255 250 246 / 64%);
}

.legal-meta {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.error-page {
  display: grid;
  min-height: 100svh;
  margin: 0;
  place-items: center;
  padding: clamp(1.5rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 78% 18%, rgb(216 193 174 / 28%) 0, transparent 28rem),
    linear-gradient(180deg, var(--color-cream) 0%, #f8f2ed 100%);
  color: var(--color-brown);
}

.error-shell {
  width: min(100%, 42rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgb(216 193 174 / 42%);
  background: rgb(255 250 246 / 62%);
  box-shadow: 0 18px 42px rgb(74 58 51 / 6%);
  text-align: center;
}

.error-kicker {
  margin: 0 0 .75rem;
  color: var(--color-terracotta);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.error-shell h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.error-shell p:not(.error-kicker) {
  max-width: 30rem;
  margin: 1rem auto 0;
  color: rgb(74 58 51 / 78%);
}

.error-shell .button {
  margin-top: clamp(1.35rem, 3vw, 2rem);
}

.site-footer {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: #efe4dc;
  color: rgb(74 58 51 / 72%);
  font-size: .92rem;
}

.site-footer-inner {
  display: flex;
  width: min(100% - clamp(2rem, 6.5vw, 6.25rem), 1180px);
  margin: 0 auto;
  gap: .55rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration-color: rgb(168 79 53 / 35%);
  text-underline-offset: .22em;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.site-footer a:hover {
  color: var(--color-terracotta);
  text-decoration-color: currentColor;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  align-items: center;
  white-space: nowrap;
}

.process-inner { max-width: 66rem; }

.process-section {
  background: linear-gradient(180deg, #fbf7f2 0%, #f8f2ed 52%, #f6f1ec 100%);
}

.process-section .section-kicker {
  margin-bottom: clamp(.85rem, 1.8vw, 1.35rem);
}

.process-copy {
  max-width: clamp(46rem, 58vw, 56rem);
}

.process-text-block + .process-text-block,
.process-language-group {
  margin-top: clamp(2rem, 4vw, 3.2rem);
}

.process-text-block h3 {
  margin: 0;
}

.process-text-block p,
.process-accordion-content p {
  max-width: 50rem;
}

.process-accordion {
  overflow: hidden;
  border-top: 1px solid rgb(74 58 51 / 12%);
  border-bottom: 1px solid rgb(74 58 51 / 12%);
}

.process-accordion-item {
  border-top: 1px solid rgb(74 58 51 / 10%);
}

.process-accordion-item:first-child {
  border-top: 0;
}

.process-accordion-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.35rem;
  padding: 1.15rem 3.1rem 1.15rem 0;
  color: rgb(74 58 51 / 82%);
  cursor: pointer;
  font-size: clamp(.94rem, 1vw, 1.04rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .105em;
  list-style: none;
  text-transform: uppercase;
}

.process-accordion-item summary::-webkit-details-marker {
  display: none;
}

.process-accordion-item summary::before,
.process-accordion-item summary::after {
  content: "";
  position: absolute;
  right: .2rem;
  top: 50%;
  width: 1rem;
  height: 1px;
  background: var(--color-terracotta);
  transform: translateY(-50%);
  transition: opacity .2s ease, transform .2s ease;
}

.process-accordion-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.process-accordion-item[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.process-accordion-item summary:hover {
  color: var(--color-brown);
}

.process-accordion-item summary:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 4px;
}

.process-accordion-content {
  padding: 0 3.1rem 1.45rem 0;
}

.process-accordion-content p:first-child {
  margin-top: 0;
}

.process-language-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4.5vw, 4.4rem);
  align-items: start;
  padding-top: clamp(1.2rem, 2.4vw, 1.8rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(22rem, 1.1fr);
  gap: clamp(2.25rem, 5vw, 5.5rem);
  align-items: start;
}

.contact-main {
  max-width: 36rem;
  padding-top: clamp(.25rem, 1vw, .7rem);
}

.contact-main > p {
  color: rgb(74 58 51 / 82%);
}

.contact-details {
  margin-top: clamp(1.7rem, 3vw, 2.4rem);
  padding-top: clamp(1.3rem, 2.4vw, 1.8rem);
  border-top: 1px solid rgb(74 58 51 / 12%);
}

.contact-details p {
  margin-top: .82rem;
}

.contact-details address {
  margin-top: .82rem;
  font-style: normal;
  line-height: 1.68;
}

.contact-details strong {
  color: rgb(74 58 51 / 82%);
}

.contact-map-link {
  margin-top: clamp(1.2rem, 2.5vw, 1.7rem);
  min-height: 2.95rem;
  padding: .72rem 1.15rem;
  background: rgb(255 250 246 / 32%);
  border-color: rgb(154 79 56 / 62%);
  color: #8f4936;
  box-shadow: none;
  letter-spacing: .075em;
}

.contact-map-link:hover {
  background: rgb(216 193 174 / 20%);
  border-color: #8f4936;
  color: #7b3e2f;
}

.contact-form {
  display: grid;
  gap: .88rem;
  padding: clamp(1.2rem, 2.6vw, 1.75rem);
  border: 1px solid rgb(216 193 174 / 36%);
  background: rgb(255 250 246 / 38%);
  box-shadow: 0 10px 26px rgb(74 58 51 / 3.5%);
}

.contact-form h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 1.65vw, 1.55rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: .005em;
}

.form-field {
  display: grid;
  gap: .38rem;
  margin: 0;
}

.form-field label {
  color: rgb(74 58 51 / 84%);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-field label span {
  color: rgb(74 58 51 / 56%);
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgb(74 58 51 / 16%);
  border-radius: 0;
  background: rgb(255 255 255 / 72%);
  color: var(--color-brown);
  font: inherit;
  line-height: 1.45;
}

.form-field input {
  min-height: 2.75rem;
  padding: .56rem .78rem;
}

.form-field textarea {
  min-height: 9.8rem;
  padding: .68rem .78rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgb(201 111 75 / 58%);
  outline: 3px solid rgb(201 111 75 / 18%);
  outline-offset: 0;
}

.form-field--website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  padding: .85rem 1rem;
  border: 1px solid rgb(74 58 51 / 14%);
  background: rgb(246 241 236 / 76%);
  font-size: .96rem;
}

.form-status p,
.form-status ul {
  margin: 0;
}

.form-status ul {
  padding-left: 1.1rem;
}

.form-status--success {
  border-color: rgb(93 122 88 / 30%);
  background: rgb(239 246 236 / 70%);
}

.form-status--error {
  border-color: rgb(168 79 53 / 28%);
  background: rgb(255 250 246 / 82%);
}

.form-note {
  max-width: 34rem;
  margin: 0;
  color: rgb(74 58 51 / 66%);
  font-size: .92rem;
  line-height: 1.55;
}

.contact-submit {
  justify-self: start;
  min-height: 3rem;
  padding: .72rem 1.28rem;
  background: #8f4936;
  border-color: #8f4936;
  box-shadow: none;
  letter-spacing: .075em;
}

.contact-submit:hover {
  background: #7b3e2f;
  border-color: #7b3e2f;
}

.contact-visuals {
  margin-top: clamp(1.3rem, 2.7vw, 2rem);
}

.contact-image {
  display: block;
  overflow: hidden;
  border-radius: 0.4rem;
  border: 1px solid rgb(216 193 174 / 42%);
  background: rgb(255 250 246 / 42%);
  box-shadow: none;
}

.contact-image img {
  display: block;
  border-radius: 0.4rem;
  width: 100%;
  height: clamp(13rem, 24vw, 18rem);
  aspect-ratio: 1400 / 933;
  object-fit: cover;
}

.contact-additional {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-top: clamp(.4rem, 1.4vw, 1rem);
  padding-top: clamp(1.7rem, 3vw, 2.4rem);
  border-top: 1px solid rgb(74 58 51 / 10%);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  align-items: center;
  margin-top: 1.2rem;
}

.logo-row img {
  width: auto;
  max-width: min(13rem, 42vw);
  max-height: 4.1rem;
  object-fit: contain;
}

.membership-panel,
.crisis-panel {
  border-color: rgb(216 193 174 / 34%);
  background: rgb(255 250 246 / 34%);
  box-shadow: none;
}

.crisis-panel {
  color: rgb(74 58 51 / 76%);
  font-size: .96rem;
}

.crisis-panel h3,
.membership-panel h3 {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .intro-grid,
  .about-grid,
  .contact-layout,
  .contact-additional { grid-template-columns: 1fr; }
  .timeline-card,
  .membership-panel,
  .crisis-panel { grid-column: auto; }
  .about-image-card {
    max-width: 22rem;
    justify-self: start;
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .content-section { padding: clamp(3.25rem, 14vw, 5rem) 0; }
  .section-welcome { padding-top: clamp(2.6rem, 10vw, 4rem); }
  .section-inner { width: min(100% - 2.3rem, 1180px); }
  .concern-list,
  .two-columns { grid-template-columns: 1fr; }
  .offer-content,
  .process-language-group,
  .offer-section .concern-list,
  .timeline-list li { grid-template-columns: 1fr; }
  .offer-content { gap: 0; }
  .offer-column { display: contents; }
  .offer-column-left .offer-text-block:first-child { order: 1; }
  .offer-help-text { order: 2; margin-top: clamp(1rem, 4vw, 1.55rem); }
  .offer-column-right .offer-text-block { order: 3; margin-top: 2.4rem; }
  .offer-section p.offer-note { order: 4; margin-top: clamp(2.5rem, 8vw, 3rem); }
  .offer-image { order: 5; max-width: 28rem; margin-top: clamp(1.7rem, 6vw, 2.4rem); }
  .process-language-group { gap: 2.4rem; }
  .process-accordion-item summary { min-height: 3.9rem; padding-right: 2.35rem; }
  .process-accordion-content { padding-right: 0; }
  .timeline-list li { gap: .18rem; max-width: 100%; padding: .72rem 0 .78rem; }
  .timeline-list span { font-size: .86rem; }
  .content-button { width: 100%; }
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav { white-space: normal; }
  .contact-layout,
  .contact-additional { gap: 1.8rem; }
  .contact-visuals { gap: 1rem; }
  .about-image-card { max-width: 100%; }
  .about-image-card img { height: clamp(19rem, 82vw, 25rem); }
}

@media (max-width: 1120px) {
  .contact-main {
    max-width: 44rem;
  }

  .contact-image img {
    height: clamp(14rem, 43vw, 22rem);
  }
}

@media (max-width: 760px) {
  .contact-image img {
    height: clamp(13rem, 62vw, 20rem);
  }

}
