:root {
  --bg: #e7e2d5;
  --bg-soft: #f4f0e6;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-strong: #faf7f0;
  --text: #261a18;
  --muted: #675952;
  --line: rgba(53, 21, 18, 0.14);
  --accent: #351512;
  --accent-2: #5f6751;
  --accent-3: #9ca083;
  --shadow: 0 20px 60px rgba(31, 20, 17, 0.08);
  --shadow-soft: 0 14px 34px rgba(31, 20, 17, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100% - 2rem));
  --header-height: 96px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(156, 160, 131, 0.32), transparent 28%),
    linear-gradient(180deg, #ece7da 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  color: var(--accent);
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  max-width: 14.5ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.25rem;
}

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

.section {
  padding: 5rem 0;
  position: relative;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
  border-top: 1px solid rgba(255,255,255,0.42);
  border-bottom: 1px solid rgba(53, 21, 18, 0.05);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.section-heading > p {
  margin-inline: auto;
}

.section-heading--left {
  text-align: left;
}

.section-heading--left h2,
.section-heading--left > p {
  margin-inline: 0;
}

.section-heading > p {
  max-width: 56rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-2);
}

.lead {
  font-size: 1.08rem;
  max-width: 46rem;
  color: var(--muted);
  text-wrap: pretty;
}

.topbar {
  background: var(--accent);
  color: #f3ede2;
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(231, 226, 213, 0.88);
  border-bottom: 1px solid rgba(53, 21, 18, 0.08);
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 144px;
  max-height: 118px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  font-weight: 700;
  color: var(--accent);
  position: relative;
}

.site-nav a.is-current:not(.btn) {
  color: var(--accent-2);
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  margin: 5px 0;
}

.hero {
  padding-top: 5rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.76fr);
  gap: 2.4rem;
  align-items: center;
}

.hero__content {
  position: relative;
  max-width: 720px;
}

.hero__content h1 {
  text-wrap: balance;
  margin-bottom: 1.35rem;
}

.hero__content::before {
  content: "";
  position: absolute;
  top: -1.75rem;
  left: -1rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(156,160,131,0.24), rgba(156,160,131,0));
  pointer-events: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #f6efe6;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(53, 21, 18, 0.14);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(53, 21, 18, 0.18);
  box-shadow: none;
}

.btn--small {
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  font-size: 0.95rem;
  color: #f6efe6 !important;
}

.hero__facts {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  max-width: 39rem;
}

.hero__facts li,
.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.hero__facts li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  box-shadow: 0 0 0 4px rgba(95, 103, 81, 0.12);
}

.hero-card {
  display: grid;
  gap: 1.25rem;
}

.photo-card {
  position: relative;
  padding: 0.9rem;
  background: #f7f2e8;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: rotate(-1.35deg);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.photo-card:hover {
  transform: rotate(-0.3deg) translateY(-3px);
}

.photo-card::before {
  content: "";
  position: absolute;
  top: -14px;
  right: 16px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #99504b;
  box-shadow: 0 0 0 4px rgba(153, 80, 75, 0.15);
}

.photo-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.photo-card--small {
  max-width: 420px;
  transform: rotate(1.3deg);
}

.contact-card,
.card,
.price-card,
.contact-box,
.notice {
  background: rgba(255,255,255,0.50);
  border: 1px solid rgba(53, 21, 18, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card,
.contact-box,
.notice {
  padding: 1.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li + li {
  margin-top: 0.7rem;
}

.contact-list a {
  font-weight: 700;
  color: var(--accent);
}

.contact-list--icons li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon,
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(95, 103, 81, 0.14);
  color: var(--accent-2);
  flex-shrink: 0;
}

.contact-icon svg,
.footer-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.contact-list--large li {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.contact-list--large span {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--accent-2);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.pill-grid span {
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  background: rgba(95, 103, 81, 0.1);
  border: 1px solid rgba(95, 103, 81, 0.16);
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.pill-grid span:hover {
  transform: translateY(-2px);
  background: rgba(95, 103, 81, 0.14);
  border-color: rgba(95, 103, 81, 0.24);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

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

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.price-card {
  padding: 1.6rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card {
  position: relative;
  padding-top: 2rem;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 160, 131, 0.16), rgba(156, 160, 131, 0));
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.96), rgba(233, 227, 213, 0.92));
  border: 1px solid rgba(95, 103, 81, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  position: relative;
}

.feature-card__icon::before,
.feature-card__icon::after {
  content: "";
  position: absolute;
  display: block;
}

.feature-card__icon--therapy::before {
  width: 1.45rem;
  height: 0.18rem;
  background: var(--accent-2);
  border-radius: 999px;
}

.feature-card__icon--therapy::after {
  width: 0.18rem;
  height: 1.45rem;
  border-radius: 999px;
  background: var(--accent-2);
}

.feature-card__icon--mobile::before {
  width: 1.05rem;
  height: 0.82rem;
  border: 2px solid var(--accent-2);
  border-top: 0;
  border-radius: 0.12rem;
  box-sizing: border-box;
  transform: translateY(0.28rem);
}

.feature-card__icon--mobile::after {
  width: 0.95rem;
  height: 0.95rem;
  border-left: 2px solid var(--accent-2);
  border-top: 2px solid var(--accent-2);
  transform: translateY(-0.38rem) rotate(45deg);
}

.feature-card__icon--price::before {
  width: 1.3rem;
  height: 1.05rem;
  border: 2px solid var(--accent-2);
  border-radius: 0.18rem;
  box-sizing: border-box;
}

.feature-card__icon--price::after {
  width: 0.72rem;
  height: 0.18rem;
  background: var(--accent-2);
  border-radius: 999px;
  box-shadow: 0 0.34rem 0 var(--accent-2);
}

.card:hover,
.price-card:hover,
.contact-card:hover,
.contact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(31, 20, 17, 0.1);
  border-color: rgba(53, 21, 18, 0.14);
}

.card--compact p {
  color: var(--muted);
}

.card--link h3 {
  margin-bottom: 0.5rem;
}

.card--link a {
  color: inherit;
}

.card--link a::after {
  content: " ->";
}

.section-cta {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.home-overview {
  padding-top: 3.3rem;
}

.home-overview .section-heading {
  margin-bottom: 1.8rem;
}

.therapy-grid {
  margin-top: 1.25rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.accordion {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.accordion details {
  display: grid;
  grid-template-rows: auto 0fr;
  background: rgba(255,255,255,0.44);
  border: 1px solid rgba(53, 21, 18, 0.09);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: grid-template-rows 320ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.accordion details[open] {
  grid-template-rows: auto 1fr;
  border-color: rgba(53, 21, 18, 0.14);
  box-shadow: 0 20px 38px rgba(31, 20, 17, 0.09);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3.5rem 1.25rem 1.4rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 1.05rem;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 280ms ease;
}

.accordion details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion__content {
  overflow: hidden;
  padding: 0 1.4rem 0;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-0.35rem);
  transition: opacity 240ms ease, transform 320ms ease, padding-bottom 320ms ease;
}

.accordion details[open] .accordion__content {
  padding-bottom: 1.4rem;
  opacity: 1;
  transform: translateY(0);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-hero {
  padding-bottom: 2rem;
}

.leistungen-page .page-hero {
  padding-bottom: 0.8rem;
}

.leistungen-page .section {
  padding: 3.25rem 0;
}

.leistungen-page .section--soft {
  padding-top: 3rem;
  padding-bottom: 2.1rem;
}

.leistungen-page .section--soft + .section {
  padding-top: 2.1rem;
}

.leistungen-page .cards {
  gap: 0.95rem;
}

.leistungen-page .therapy-grid {
  margin-top: 0.4rem;
}

.leistungen-page .accordion {
  margin-top: 0.8rem;
  gap: 0.85rem;
}

.leistungen-page .card p {
  margin-bottom: 0.9rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.95;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.notice {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(95, 103, 81, 0.12), rgba(255,255,255,0.56));
}

.notice ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.notice li + li {
  margin-top: 0.35rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}

.signature {
  margin-top: 1.8rem;
  color: var(--accent);
}

.signature span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.5rem;
  align-items: start;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-card--hero .contact-list li + li {
  margin-top: 0.9rem;
}

.contact-card__actions {
  margin-top: 1.5rem;
}

.contact-box--form,
.contact-box--details {
  padding: 1.7rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(53, 21, 18, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.form-notice {
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.form-notice--success {
  background: linear-gradient(135deg, rgba(95, 103, 81, 0.18), rgba(255,255,255,0.7));
}

.form-notice--error {
  background: linear-gradient(135deg, rgba(153, 80, 75, 0.16), rgba(255,255,255,0.72));
}

.form-notice strong {
  display: block;
  margin-bottom: 0.45rem;
}

.form-notice p {
  margin: 0;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.checkbox-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.checkbox-field span {
  font-size: 0.95rem;
  color: var(--muted);
}

.checkbox-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  position: relative;
  padding: 2.4rem 0 2.2rem;
  background: var(--accent);
  color: #f3ede2;
  overflow: visible;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  width: min(72vw, 1100px);
  height: 58px;
  background: linear-gradient(90deg, #a7ab8f, #9d9f84);
  clip-path: polygon(0 86%, 100% 18%, 100% 100%, 0 100%);
  z-index: -1;
}

.site-footer::after {
  content: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) auto;
  align-items: center;
  gap: 1.25rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 0.1rem;
}

.footer-logo-wrap {
  display: grid;
  place-items: center;
  min-width: 118px;
  min-height: 118px;
  padding: 0.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(244, 240, 230, 0.98), rgba(233, 226, 211, 0.94));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.footer-brand-copy {
  display: grid;
  gap: 0.25rem;
  max-width: 24rem;
}

.footer-brand-copy strong,
.footer-brand-copy span {
  color: #f3ede2;
}

.footer-brand-copy strong {
  font-size: 1.15rem;
}

.footer-brand-copy span {
  opacity: 0.9;
}

.footer-logo {
  width: 100%;
  max-width: 98px;
  max-height: 98px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.footer-nav a {
  font-weight: 700;
  opacity: 0.96;
}

.footer-contact-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.45rem;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(156, 160, 131, 0.96), rgba(143, 148, 118, 0.94));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.footer-contact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), transparent 45%);
  pointer-events: none;
}

.footer-contact-strip::after {
  content: "";
  position: absolute;
  right: 5.6rem;
  top: 50%;
  width: 190px;
  height: 110px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), rgba(255,255,255,0));
  pointer-events: none;
}

.footer-contact-copy {
  display: grid;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #f7f2e8;
  font-weight: 600;
}

.footer-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff7ec;
}

.footer-badge {
  display: grid;
  place-items: center;
  min-height: 96px;
  border-radius: 18px;
  background: transparent;
  border: 0;
  position: relative;
  z-index: 1;
}

.footer-badge img {
  width: 146px;
  opacity: 0.62;
  filter: none;
}

.footer-credit {
  margin: 0;
  font-size: 0.95rem;
  color: #f3ede2;
  grid-column: 1 / -1;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(243, 237, 226, 0.12);
}

.footer-credit span {
  color: #d93636;
  font-size: 1.05em;
}

.footer-credit a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  max-width: 780px;
}

.legal-page,
.legal-page * {
  animation: none !important;
}

.legal-page .reveal,
.legal-page .is-visible,
.legal-content {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.legal-content h1 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  max-width: none;
}

.legal-content h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.18;
  margin-top: 1.8rem;
}

.legal-content h3,
.legal-content h4 {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0;
  margin-top: 1.1rem;
  margin-bottom: 0.55rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.5rem;
}

.legal-back {
  margin-top: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .about,
  .contact-page-grid,
  .contact-section__grid,
  .cards--three,
  .cards--two,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 1.5rem;
  }

  .about__media {
    order: 2;
  }

  .about__content {
    order: 1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 82px;
  }

  .topbar__inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0;
    text-align: center;
  }

  .brand img {
    width: 98px;
    max-height: 82px;
  }

  .nav-toggle {
    display: inline-block;
    z-index: 100;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 1px) 0 auto 0;
    background: rgba(244, 240, 230, 0.98);
    border-bottom: 1px solid rgba(53, 21, 18, 0.08);
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all var(--transition);
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    max-width: 100%;
  }

  .hero__actions {
    gap: 0.8rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer::before {
    top: -40px;
    width: min(86vw, 560px);
    height: 44px;
  }

  .site-footer::after {
    content: none;
  }

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

  .footer-contact-strip {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.25rem, 1160px);
  }

  .header__inner {
    gap: 0.6rem;
  }

  .hero__facts li,
  .check-list li {
    padding-left: 1.55rem;
  }

  .pill-grid {
    justify-content: flex-start;
  }

  .pill-grid span {
    width: 100%;
    text-align: center;
  }

  .card,
  .price-card,
  .contact-card,
  .contact-box,
  .notice,
  .accordion summary,
  .accordion__content {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}
