:root {
  --bg: #efeae2;
  --bg-soft: #e4ddd3;
  --surface: #f6f1ea;
  --surface-strong: rgba(246, 241, 234, 0.9);
  --green: #6c7f73;
  --green-deep: #4f6359;
  --sage: #8c9d93;
  --mist: #d2d9d3;
  --stone: #b7ab9b;
  --sky: #9bacb3;
  --sky-deep: #5c7482;
  --sky-night: #203748;
  --text: #1c201d;
  --muted: #626761;
  --border: rgba(28, 32, 29, 0.11);
  --border-strong: rgba(32, 55, 72, 0.18);
  --shadow: 0 24px 80px rgba(18, 28, 35, 0.08);
  --shadow-soft: 0 14px 40px rgba(18, 28, 35, 0.06);
  --shadow-elevated: 0 34px 110px rgba(18, 28, 35, 0.14);
  --radius-xs: 14px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(155, 172, 179, 0.18), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(108, 127, 115, 0.1), transparent 24%),
    radial-gradient(circle at 50% 110%, rgba(183, 171, 155, 0.14), transparent 30%),
    linear-gradient(180deg, #f2eee7 0%, #ece7de 36%, #e7e1d8 70%, #e2ddd3 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(30, 33, 29, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 33, 29, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 88%);
  pointer-events: none;
  z-index: 0;
}

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

figure {
  margin: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.js body {
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--green-deep);
  color: #f7f5f1;
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 100;
}

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

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  padding-top: 22px;
}

.topbar {
  width: var(--container);
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(30, 33, 29, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(248, 244, 238, 0.94), rgba(242, 237, 229, 0.84)),
    rgba(246, 241, 234, 0.82);
  box-shadow: 0 20px 58px rgba(18, 28, 35, 0.08);
  position: sticky;
  top: 16px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 8px;
}

.brand__wordmark {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand__logo {
  display: block;
  width: clamp(164px, 16vw, 228px);
  height: auto;
}

.brand--footer .brand__logo {
  width: clamp(170px, 18vw, 242px);
}

.brand__subline {
  color: color-mix(in srgb, var(--green-deep) 68%, white);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  line-height: 1.1;
  margin-top: 6px;
  padding-left: 6px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  margin-right: auto;
}

.site-nav a,
.footer-nav a,
.footer-legal a {
  position: relative;
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.site-nav a::after,
.footer-nav a::after,
.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"],
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-legal a:hover::after,
.footer-legal a:focus-visible::after {
  transform: scaleX(1);
}

.topbar__cta {
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #213747, #406070);
  color: #f7f5f1;
  box-shadow: 0 20px 44px rgba(32, 55, 72, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 22px 48px rgba(32, 55, 72, 0.26);
}

.button--secondary {
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.98), rgba(244, 239, 232, 0.94));
  color: var(--text);
  border-color: var(--border);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  align-self: center;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0;
}

main > .section + .section {
  margin-top: 28px;
}

main > .hero + .section {
  margin-top: 36px;
}

.section--panel {
  border-radius: 42px;
  padding-inline: 30px;
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.92), rgba(221, 228, 225, 0.54)),
    rgba(246, 241, 234, 0.82);
}

.section--tone-mist,
.section--tone-sage,
.section--tone-forest,
.section--tone-stone,
.section--tone-warm {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-radius: 42px;
  padding-inline: 30px;
  border: 1px solid rgba(30, 33, 29, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.section--panel,
.section--tone-mist,
.section--tone-sage,
.section--tone-forest,
.section--tone-stone,
.section--tone-warm {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.section--panel::before,
.section--tone-mist::before,
.section--tone-sage::before,
.section--tone-forest::before,
.section--tone-stone::before,
.section--tone-warm::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(95, 120, 135, 0.08), transparent 26%);
  pointer-events: none;
  z-index: -1;
}

.section--tone-mist {
  background:
    radial-gradient(circle at top left, rgba(155, 172, 179, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(246, 241, 234, 0.84), rgba(233, 238, 236, 0.92));
}

.section--tone-sage {
  background:
    radial-gradient(circle at 84% 8%, rgba(95, 120, 135, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(245, 241, 234, 0.88), rgba(216, 223, 218, 0.5));
}

.section--tone-forest {
  background:
    radial-gradient(circle at top right, rgba(92, 116, 130, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(242, 238, 232, 0.82), rgba(213, 222, 219, 0.46));
}

.section--tone-stone {
  background:
    radial-gradient(circle at 8% 16%, rgba(183, 171, 155, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(247, 243, 236, 0.9), rgba(238, 232, 224, 0.98));
}

.section--tone-warm {
  background:
    radial-gradient(circle at 88% 14%, rgba(108, 127, 115, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(248, 244, 238, 0.94), rgba(237, 231, 222, 0.98));
}

.eyebrow,
.card-kicker,
.hero-floating__label,
.price-card__label,
.slider-header__caption {
  margin: 0;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.42rem;
  line-height: 1.1;
}

p,
li {
  line-height: 1.72;
}

.hero__lead,
.section-heading p,
.benefit-card p,
.quality-card p,
.pricing-note,
.lifestyle-card p,
.showcase-card p,
.comfort-card p,
.special-card p,
.accordion__panel p,
.contact-copy p,
.contact-point p,
.field span,
.form-note,
.form-status,
.footer-copy,
.footer-contact p,
.hero-floating span,
.price-card span {
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 14px 0 18px;
}

.anchor-fix {
  position: relative;
  top: -120px;
  display: block;
  visibility: hidden;
}

.surface-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(241, 238, 232, 0.92)),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 40px;
  align-items: center;
  margin-top: 10px;
  min-height: clamp(700px, 78vh, 860px);
  padding-top: 42px;
  padding-inline: 30px;
  border-radius: 42px;
  border: 1px solid rgba(247, 243, 236, 0.08);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.06), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(140, 157, 147, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(13, 24, 36, 0.98), rgba(27, 48, 64, 0.95) 58%, rgba(90, 118, 131, 0.82) 100%);
  box-shadow: 0 36px 110px rgba(18, 28, 35, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.hero__lead {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
  color: rgba(241, 238, 232, 0.82);
}

.hero h1 {
  color: #f7f3ed;
}

.hero .eyebrow {
  color: rgba(206, 221, 220, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero .button--primary {
  background: linear-gradient(180deg, rgba(248, 244, 238, 0.98), rgba(236, 230, 221, 0.94));
  color: var(--text);
  box-shadow: 0 20px 46px rgba(7, 16, 28, 0.18);
}

.hero .button--secondary {
  background: rgba(247, 243, 236, 0.08);
  border-color: rgba(247, 243, 236, 0.16);
  color: #f7f3ed;
}

.hero .button--secondary:hover,
.hero .button--secondary:focus-visible {
  box-shadow: 0 18px 42px rgba(7, 16, 28, 0.16);
}

.hero__chips {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(247, 243, 236, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(247, 243, 236, 0.08));
  color: rgba(247, 243, 236, 0.96);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  padding: 8px 0 10px;
}

.hero__details {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media,
.showcase-media__frame,
.lifestyle-card,
.special-card,
.benefit-card,
.quality-card,
.comfort-card,
.showcase-card,
.contact-form,
.contact-point,
.accordion__item,
.price-card {
  border-radius: var(--radius-md);
}

.hero-media {
  position: relative;
  height: clamp(470px, 50vw, 720px);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 28, 0.2), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(245, 243, 238, 0.16), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(241, 238, 232, 0), rgba(241, 238, 232, 0.34));
  pointer-events: none;
  z-index: 1;
}

.hero-media img,
.showcase-media__frame img,
.lifestyle-card__media img,
.special-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 560ms ease;
}

.media-focus-hero {
  object-position: center 56%;
}

.media-focus-house {
  object-position: center 48%;
}

.media-focus-room {
  object-position: center 42%;
}

.media-focus-process {
  object-position: center 48%;
}

.media-focus-top {
  object-position: center 22%;
}

.hero-media:hover img,
.showcase-media__frame:hover img,
.lifestyle-card:hover img,
.special-card:hover img {
  transform: translateZ(0) scale(1.04);
}

.hero-floating {
  position: absolute;
  max-width: 260px;
  padding: 20px 22px;
  pointer-events: auto;
  background:
    linear-gradient(180deg, rgba(250, 249, 246, 0.94), rgba(241, 238, 232, 0.88)),
    rgba(241, 238, 232, 0.88);
  border-radius: 30px;
  border: 1px solid rgba(30, 33, 29, 0.08);
  box-shadow: 0 26px 68px rgba(30, 33, 29, 0.14);
  backdrop-filter: blur(14px) saturate(122%);
}

.hero-floating strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1.18rem, 2vw, 1.4rem);
}

.hero-floating--price {
  left: 26px;
  bottom: 26px;
}

.hero-floating--detail {
  right: 26px;
  top: 26px;
}

.benefit-grid,
.quality-grid,
.comfort-grid,
.special-grid,
.showcase-info,
.contact-points {
  display: grid;
  gap: 20px;
}

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

.benefit-card,
.quality-card,
.comfort-card {
  min-height: 100%;
  padding: 28px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(201, 211, 199, 0.55);
  color: var(--green-deep);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card:nth-child(2) .icon-badge {
  background: rgba(126, 147, 131, 0.22);
}

.benefit-card:nth-child(3) .icon-badge {
  background: rgba(95, 116, 101, 0.16);
}

.benefit-card:nth-child(4) .icon-badge {
  background: rgba(185, 177, 164, 0.24);
}

.benefit-card h3,
.quality-card h3,
.comfort-card h3,
.showcase-card h3,
.contact-point h3 {
  margin-bottom: 12px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.48fr);
  gap: 22px 24px;
  align-items: start;
}

.price-card {
  padding: 30px;
}

.price-card strong {
  display: block;
  margin: 14px 0 12px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
}

.pricing-note {
  margin-top: 18px;
}

.quality-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.slider-shell {
  position: relative;
  padding-top: 10px;
}

.slider-header {
  position: absolute;
  top: -68px;
  right: 0;
  z-index: 2;
}

.slider-controls {
  display: inline-flex;
  gap: 10px;
}

.slider-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(241, 238, 232, 0.82);
  color: var(--text);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.slider-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 35%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-top: 6px;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.lifestyle-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(247, 245, 241, 0.82), rgba(241, 238, 232, 0.98)),
    var(--surface);
}

.lifestyle-card__media {
  position: relative;
  aspect-ratio: 1.06 / 0.84;
  min-height: 320px;
  overflow: hidden;
}

.lifestyle-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 52%;
  background: linear-gradient(180deg, rgba(241, 238, 232, 0), rgba(241, 238, 232, 0.98));
  pointer-events: none;
}

.lifestyle-card__body,
.special-card__body {
  padding: 24px;
}

.lifestyle-card__body {
  position: relative;
  z-index: 1;
  margin-top: -54px;
  padding: 8px 24px 28px;
  background: linear-gradient(
    180deg,
    rgba(241, 238, 232, 0) 0%,
    rgba(241, 238, 232, 0.94) 18%,
    rgba(241, 238, 232, 1) 46%,
    rgba(241, 238, 232, 1) 100%
  );
}

.lifestyle-card__body::before {
  display: none;
}

.slider-progress {
  width: 100%;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(30, 33, 29, 0.08);
  overflow: hidden;
}

.slider-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-deep), var(--sage));
  transition: width 240ms ease, transform 240ms ease;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: center;
}

#leben .section-heading {
  margin-bottom: 18px;
}

.showcase-media__frame {
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
}

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

.showcase-card {
  padding: 26px;
}

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

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

.special-card {
  overflow: hidden;
}

.special-card__media {
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
}

.section--faq {
  padding-bottom: 80px;
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion__item {
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  color: var(--text);
  text-align: left;
}

.accordion__trigger span:first-child {
  font-size: 1.12rem;
  font-weight: 700;
}

.accordion__icon {
  width: 18px;
  height: 18px;
  flex: none;
  position: relative;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.accordion__panel.is-open {
  grid-template-rows: 1fr;
}

.accordion__panel-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 26px 0;
}

.accordion__panel.is-open .accordion__panel-inner {
  padding-bottom: 24px;
}

.section--contact {
  padding-top: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

.contact-points {
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-point {
  padding: 22px;
}

.contact-form {
  padding: 28px;
}

.gf-form {
  display: grid;
  gap: 16px;
}

.gf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gf-field {
  display: grid;
  gap: 8px;
}

.gf-label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gf-input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.gf-input::placeholder {
  color: rgba(94, 98, 92, 0.72);
}

.gf-input:focus {
  outline: none;
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(126, 147, 131, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.gf-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M6 8l4 4 4-4' fill='none' stroke='%235e625c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

.gf-textarea {
  min-height: 148px;
  resize: vertical;
}

.gf-consent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.gf-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 6px 0 0;
  accent-color: var(--green-deep);
}

.gf-consent label,
.gf-consent span {
  line-height: 1.55;
}

.gf-privacy {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.gf-btn {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #f7f5f1;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
  box-shadow: 0 18px 38px rgba(78, 97, 84, 0.18);
}

.gf-btn:hover,
.gf-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(78, 97, 84, 0.24);
}

.gf-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: saturate(0.7);
  transform: none;
  box-shadow: none;
}

.gf-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.gf-toast {
  display: none;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.gf-toast.show {
  display: block;
}

.gf-toast.ok {
  border: 1px solid rgba(78, 97, 84, 0.16);
  background: rgba(201, 211, 199, 0.44);
  color: var(--green-deep);
}

.gf-toast.err {
  border: 1px solid rgba(122, 60, 50, 0.14);
  background: rgba(180, 124, 112, 0.14);
  color: #7a3c32;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row + .form-row,
.form-row + .field,
.field + .field,
.field + .button,
.button + .form-note,
.form-note + .form-status {
  margin-top: 16px;
}

.form-row--compact {
  grid-template-columns: 1fr;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(126, 147, 131, 0.16);
  background: rgba(255, 255, 255, 0.8);
}

.form-submit {
  width: fit-content;
}

.form-note {
  font-size: 0.93rem;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 600;
}

.site-footer {
  width: var(--container);
  margin: 28px auto 0;
  padding: 0 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
  gap: 26px;
  padding: 32px 30px 18px;
  border: 1px solid rgba(30, 33, 29, 0.08);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background:
    linear-gradient(180deg, rgba(241, 238, 232, 0.86), rgba(236, 232, 225, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.footer-copy {
  max-width: 34ch;
  margin-top: 14px;
}

.footer-nav,
.footer-legal {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 10px;
}

.footer-nav a,
.footer-legal a {
  width: fit-content;
  justify-self: start;
}

.footer-contact p {
  margin: 0 0 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 30px 28px;
  border: 1px solid rgba(30, 33, 29, 0.08);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(180deg, rgba(236, 232, 225, 0.98), rgba(236, 232, 225, 0.98)),
    var(--surface);
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  padding-top: 46px;
}

.page-hero__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 58px 0 12px;
}

.page-hero__inner h1 {
  max-width: 10ch;
}

.page-hero__inner p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-main {
  padding-bottom: 56px;
}

.legal-panel-wrap {
  width: var(--container);
  margin: 0 auto;
  padding: 30px 0 54px;
}

.legal-panel {
  padding: 36px 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(201, 211, 199, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(241, 238, 232, 0.92), rgba(241, 238, 232, 0.82)),
    var(--surface);
}

.legal-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
}

.legal-panel__section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
}

.legal-panel__grid .legal-panel__section {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-panel h2 {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.24rem, 2vw, 1.52rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.legal-panel h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

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

.legal-panel p {
  margin: 0 0 12px;
}

.legal-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.legal-panel address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.72;
}

.benefit-card p:last-child,
.quality-card p:last-child,
.comfort-card p:last-child,
.special-card p:last-child,
.showcase-card p:last-child,
.contact-point p:last-child,
.footer-contact p:last-child {
  margin-bottom: 0;
}

.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;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(0);
  transition:
    opacity 920ms ease,
    transform 920ms ease,
    filter 920ms ease;
}

.js .reveal.reveal--left {
  transform: translate3d(-26px, 18px, 0);
}

.js .reveal.reveal--right {
  transform: translate3d(26px, 18px, 0);
}

.js .reveal.reveal--soft {
  transform: translate3d(0, 18px, 0);
  filter: blur(12px);
}

.js .reveal.reveal--scale {
  transform: translate3d(0, 18px, 0) scale(0.972);
  transform-origin: center top;
}

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

.delay-1 {
  transition-delay: 140ms;
}

.delay-2 {
  transition-delay: 260ms;
}

.delay-3 {
  transition-delay: 380ms;
}

.benefit-card,
.quality-card,
.comfort-card,
.special-card,
.showcase-card,
.contact-point,
.price-card,
.accordion__item,
.lifestyle-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.benefit-card:hover,
.quality-card:hover,
.comfort-card:hover,
.special-card:hover,
.showcase-card:hover,
.contact-point:hover,
.price-card:hover,
.accordion__item:hover,
.lifestyle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(30, 33, 29, 0.11);
  border-color: var(--border-strong);
}

@media (max-width: 1140px) {
  .hero,
  .section--split,
  .contact-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-media {
    height: clamp(420px, 58vw, 620px);
  }

  .benefit-grid,
  .quality-grid,
  .comfort-grid,
  .special-grid,
  .showcase-info,
  .legal-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  :root {
    --container: min(1180px, calc(100vw - 28px));
  }

  .site-header {
    padding-top: 14px;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 10px 14px;
    border-radius: 28px;
  }

  .brand {
    gap: 2px;
    min-height: 48px;
    justify-content: center;
  }

  .brand__logo {
    width: clamp(144px, 38vw, 184px);
  }

  .brand__subline {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    margin-top: 6px;
    padding-left: 5px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    margin-top: 1px;
    border: 1px solid rgba(30, 33, 29, 0.08);
    border-radius: 50%;
    background: rgba(241, 238, 232, 0.82);
    box-shadow: 0 12px 32px rgba(30, 33, 29, 0.06);
    color: var(--text);
  }

  .nav-toggle__label {
    font-weight: 700;
  }

  .nav-toggle__icon {
    width: 18px;
    display: grid;
    gap: 4px;
  }

  .nav-toggle__icon span {
    display: block;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .js .site-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    border: 1px solid transparent;
    border-radius: 24px;
    background: transparent;
    transition:
      max-height 260ms ease,
      margin 220ms ease,
      padding 220ms ease,
      opacity 220ms ease,
      transform 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease;
  }

  .js .site-header.is-open .site-nav {
    max-height: min(420px, calc(100svh - 150px));
    margin-top: 4px;
    padding: 8px;
    opacity: 1;
    overflow: auto;
    pointer-events: auto;
    transform: translateY(0);
    border-color: rgba(30, 33, 29, 0.08);
    background:
      linear-gradient(180deg, rgba(247, 245, 241, 0.92), rgba(241, 238, 232, 0.98)),
      var(--surface);
    box-shadow: var(--shadow-soft);
  }

  .js .site-header.is-open .nav-toggle__icon span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .js .site-header.is-open .nav-toggle__icon span:nth-child(2) {
    opacity: 0;
  }

  .js .site-header.is-open .nav-toggle__icon span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .js .site-header.is-open .nav-toggle {
    color: #f7f5f1;
    border-color: transparent;
    background: linear-gradient(135deg, var(--green-deep), var(--green));
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.42);
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active,
  .site-nav a[aria-current="page"] {
    background: rgba(201, 211, 199, 0.52);
    border-color: rgba(78, 97, 84, 0.12);
  }

  .topbar__cta {
    display: none;
  }

  .slider-track {
    grid-auto-columns: minmax(280px, 78%);
  }

  .slider-header {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero__details {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: -54px;
    padding: 0 16px;
    z-index: 2;
  }

  .hero-floating {
    position: static;
    max-width: none;
    min-height: 100%;
    padding: 16px 16px 18px;
  }

  .hero__chips {
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 42px 0;
  }

  .hero {
    padding-inline: 18px;
    border-radius: 28px;
  }

  .section--panel,
  .section--tone-mist,
  .section--tone-sage,
  .section--tone-forest,
  .section--tone-stone,
  .section--tone-warm {
    padding-inline: 18px;
    border-radius: 28px;
  }

  .hero__actions,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  main > .section + .section {
    margin-top: 20px;
  }

  main > .hero + .section {
    margin-top: 28px;
  }

  .hero-media,
  .showcase-media__frame {
    height: auto;
    aspect-ratio: 1 / 1.08;
  }

  .benefit-grid,
  .quality-grid,
  .comfort-grid,
  .special-grid,
  .showcase-info,
  .contact-points,
  .gf-grid,
  .legal-panel__grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .legal-panel {
    padding: 22px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__details {
    margin-top: -42px;
    padding: 0 12px;
  }

  .hero-floating strong {
    font-size: 1.06rem;
  }

  .hero-floating span {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero__chips {
    display: none;
  }

  .footer-grid {
    padding: 24px 20px 14px;
    border-radius: 28px 28px 0 0;
  }

  .footer-bottom {
    padding: 0 20px 22px;
    border-radius: 0 0 28px 28px;
  }

  .page-hero__inner {
    padding-top: 48px;
  }

  .page-hero__inner h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .lifestyle-card__media {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .hero__details {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: -26px;
    padding: 0 8px;
  }

  .hero-floating {
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(30, 33, 29, 0.12);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-top: 10px;
  }

  .topbar {
    padding: 8px 10px 8px 12px;
  }

  .brand {
    min-height: 44px;
  }

  .brand__logo {
    width: 142px;
  }

  .brand__subline {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    margin-top: 7px;
    padding-left: 4px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 4px;
  }

  .page-hero__inner {
    padding-top: 36px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
