:root {
  --ink: #14201c;
  --ink-soft: #33413c;
  --muted: #6d746f;
  --paper: #f7f1e6;
  --paper-warm: #fffaf2;
  --paper-soft: #efe6d8;
  --line: #ded1bd;
  --navy: #10231f;
  --navy-2: #17342d;
  --blue: #17342d;
  --accent: #10231f;
  --accent-dark: #0b1b18;
  --accent-soft: #efe4d2;
  --brass: #b99154;
  --sand: #eadcc8;
  --sage: #b8c7bd;
  --shadow: 0 22px 58px rgba(16, 35, 31, 0.13);
  --shadow-soft: 0 12px 34px rgba(16, 35, 31, 0.08);
  --radius: 22px;
  --footer-text: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scrollbar-gutter: stable;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 0%, rgba(185, 145, 84, 0.09), transparent 28rem),
    linear-gradient(180deg, #f7f1e6 0%, #fffaf2 44%, #f7f1e6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header .container {
  width: min(1240px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 230, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 209, 189, 0.88);
  transform: translateZ(0);
  will-change: transform;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(16, 35, 31, 0.08);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-mark {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0 12px;
  align-items: center;
  min-width: 0;
  font-weight: 750;
}

.brand-mark::before {
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, var(--navy-2), var(--accent-dark));
  border: 1px solid rgba(173, 141, 88, 0.42);
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(16, 35, 31, 0.18);
  content: "IM";
  font-size: 0.84rem;
  font-weight: 820;
}

.brand-title {
  grid-column: 2;
  grid-row: 1;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-subtitle {
  grid-column: 2;
  grid-row: 2;
  color: #786f61;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.nav a {
  color: #64716b;
  font-size: 0.91rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.nav-open .menu-toggle span {
  transform: rotate(45deg);
}

.nav-open .menu-toggle span::before {
  opacity: 0;
}

.nav-open .menu-toggle span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: none;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(16, 35, 31, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--accent-dark);
  border-color: rgba(173, 141, 88, 0.38);
  box-shadow: 0 10px 22px rgba(16, 35, 31, 0.08);
}

.section {
  padding: 78px 0;
}

.section-muted {
  background:
    radial-gradient(circle at 84% 4%, rgba(173, 141, 88, 0.11), transparent 28rem),
    linear-gradient(180deg, var(--paper-soft), #fffdf8 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.split-panel h2,
.broker-cta h2,
.contact-info h2,
.detail-main h2,
.provider-box h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

.section-head p,
.rich-copy p,
.broker-cta p,
.contact-info p,
.detail-main p,
.provider-box p,
.page-hero p,
.hero-subline {
  color: var(--muted);
}

.section-kicker,
.eyebrow,
.panel-label {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-panel .panel-label {
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  color: var(--accent-dark);
  background: rgba(239, 232, 220, 0.86);
  border: 1px solid rgba(173, 141, 88, 0.22);
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(185, 145, 84, 0.18) 0, transparent 24rem),
    linear-gradient(135deg, #10231f 0%, #17342d 100%);
  border-bottom: 1px solid rgba(16, 35, 31, 0.14);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 250, 242, 0.055), transparent 18rem),
    linear-gradient(120deg, transparent 0%, rgba(255, 250, 242, 0.035) 45%, transparent 78%);
  content: "";
}

.hero > .container,
.page-hero > .container,
.object-detail-hero > .container {
  position: relative;
}

.platform-hero {
  padding: 74px 0 70px;
}

.platform-hero .container {
  width: min(1240px, calc(100% - 40px));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: #fffdf8;
  font-size: clamp(2.55rem, 4.8vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 830;
}

.hero-subline {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

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

.hero-panel {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(185, 145, 84, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 241, 230, 0.94));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(16, 35, 31, 0.14);
}

.hero-panel::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--brass);
  content: "";
}

.hero-panel-track {
  display: grid;
}

.hero-panel-slide {
  grid-area: 1 / 1;
  display: grid;
  align-content: start;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.hero-panel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.55vw, 2.18rem);
  line-height: 1.14;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
}

.panel-visual {
  min-height: 172px;
  border: 1px solid rgba(185, 145, 84, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(16, 35, 31, 0.04), rgba(185, 145, 84, 0.12)),
    linear-gradient(180deg, #f7f1e6, #fffaf2);
  overflow: hidden;
}

.panel-visual::before {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 172px;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(16, 35, 31, 0.12) 42% 43%, transparent 43%),
    radial-gradient(circle at 76% 22%, rgba(185, 145, 84, 0.28), transparent 18%),
    linear-gradient(135deg, rgba(16, 35, 31, 0.14), rgba(16, 35, 31, 0.03) 52%, rgba(185, 145, 84, 0.12));
}

.panel-visual[data-kind="wohnung"]::before {
  background:
    linear-gradient(90deg, rgba(16, 35, 31, 0.1) 0 8%, transparent 8% 15%, rgba(16, 35, 31, 0.08) 15% 22%, transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(185, 145, 84, 0.25), transparent 18%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.5), rgba(16, 35, 31, 0.08));
}

.panel-visual[data-kind="anlage"]::before {
  background:
    repeating-linear-gradient(90deg, rgba(16, 35, 31, 0.1) 0 1px, transparent 1px 38px),
    radial-gradient(circle at 74% 18%, rgba(185, 145, 84, 0.24), transparent 18%),
    linear-gradient(135deg, rgba(16, 35, 31, 0.1), rgba(255, 250, 242, 0.5));
}

.mini-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.mini-facts span,
.filter-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 680;
}

.panel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 42px;
  margin-top: 2px;
  padding: 0 16px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 760;
}

.panel-object-facts {
  display: grid;
  grid-template-columns: minmax(116px, 1.25fr) repeat(2, minmax(74px, 1fr));
  gap: 8px;
  margin: 22px 0 0;
}

.panel-object-facts div {
  min-width: 0;
  padding: 11px 12px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(185, 145, 84, 0.22);
  border-radius: 14px;
}

.panel-object-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

.panel-object-facts dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: clamp(0.86rem, 0.95vw, 0.96rem);
  font-weight: 820;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-panel-dots {
  display: flex;
  gap: 7px;
  margin-top: 22px;
}

.hero-panel-dots span {
  width: 7px;
  height: 7px;
  background: rgba(16, 35, 31, 0.2);
  border-radius: 999px;
  transition: width 240ms ease, background-color 240ms ease;
}

.hero-panel-dots span.is-active {
  width: 22px;
  background: var(--brass);
}

.page-hero {
  padding: 76px 0 62px;
}

.page-hero p {
  position: relative;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.08rem;
}

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

.intro-strip div {
  min-height: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
}

.intro-strip strong {
  display: block;
  color: var(--accent-dark);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.1;
}

.intro-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.intro-section {
  padding: 72px 0 42px;
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.editorial-intro h2,
.compact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 810;
}

.compact-duo-section {
  padding-top: 32px;
}

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

.compact-panel {
  padding: 30px;
  border: 1px solid rgba(221, 213, 200, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-soft);
}

.compact-panel p {
  margin: 16px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.trust-panel,
.audience-panel,
.district-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.76fr) minmax(0, 1.24fr);
  gap: 38px;
  align-items: start;
}

.trust-intro,
.audience-copy,
.district-copy {
  max-width: 520px;
}

.trust-intro h2,
.audience-copy h2,
.district-copy h2,
.home-process h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 810;
}

.trust-intro p,
.audience-copy p,
.district-copy p,
.home-process p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.trust-grid,
.district-points,
.quality-grid {
  display: grid;
  gap: 16px;
}

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

.audience-list {
  display: grid;
  gap: 14px;
}

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

.trust-card,
.audience-list article,
.district-points article,
.quality-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(221, 228, 234, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-soft);
}

.trust-card span,
.quality-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brass);
  font-weight: 840;
}

.trust-card h3,
.audience-list h3,
.district-points h3,
.quality-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: 800;
}

.trust-card p,
.audience-list p,
.district-points p,
.quality-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.audience-list article {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.audience-list h3 {
  margin-bottom: 0;
}

.district-panel {
  align-items: stretch;
}

.district-copy {
  padding-top: 4px;
}

.quality-card {
  min-height: 220px;
}

.home-process {
  align-items: center;
}

.object-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.object-grid-wide {
  margin-top: 28px;
}

.object-card {
  display: grid;
  grid-template-rows: 260px minmax(0, 1fr);
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 213, 200, 0.94);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 35, 31, 0.07);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.object-card:hover {
  transform: none;
  border-color: rgba(184, 154, 104, 0.34);
  box-shadow: 0 24px 54px rgba(16, 35, 31, 0.12);
}

.object-image-link {
  position: relative;
  display: block;
  height: 260px;
  min-height: 0;
  overflow: hidden;
}

.object-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  color: rgba(16, 35, 31, 0.6);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 253, 248, 0.52), transparent 16rem),
    linear-gradient(135deg, #ded4c2, #b8c7bd);
}

.object-visual::before {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 6px;
  content: "";
}

.object-visual::after {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 22%;
  height: 26%;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 255, 255, 0.48) 7% 13%, transparent 13% 22%, rgba(255, 255, 255, 0.42) 22% 29%, transparent 29% 40%, rgba(255, 255, 255, 0.42) 40% 47%, transparent 47% 58%, rgba(255, 255, 255, 0.42) 58% 65%, transparent 65% 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.46);
  content: "";
}

.object-visual span {
  position: relative;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  font-weight: 820;
  text-transform: uppercase;
}

.object-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  max-width: calc(100% - 28px);
  padding: 7px 11px;
  color: var(--accent-dark);
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(185, 145, 84, 0.38);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(16, 35, 31, 0.1);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.object-card-body {
  display: grid;
  grid-template-rows: minmax(178px, 1fr) auto auto auto;
  gap: 18px;
  padding: 22px;
}

.object-summary {
  min-width: 0;
}

.object-location {
  margin: 0 0 6px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.object-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 800;
}

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

.object-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.object-facts div,
.detail-facts div {
  min-width: 0;
  padding: 12px 11px;
  border: 1px solid rgba(221, 213, 200, 0.92);
  border-radius: 14px;
  background: var(--paper-soft);
}

.object-facts dt,
.detail-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
}

.object-facts dd,
.detail-facts dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 820;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.object-facts div:first-child dd {
  font-size: clamp(0.9rem, 0.96vw, 0.98rem);
}

.object-meta {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.object-provider {
  min-height: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.object-card-note {
  color: var(--accent-dark) !important;
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.45;
}

.object-card-body .btn {
  width: 100%;
  align-self: end;
}

.operator-note {
  max-width: 920px;
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--ink-soft);
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(185, 145, 84, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.operator-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.section-action {
  margin-top: 34px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.rich-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.rich-copy p {
  margin: 0;
}

.broker-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(239, 232, 220, 0.9), transparent 18rem),
    #fffdf8;
  box-shadow: var(--shadow);
}

.broker-cta p {
  max-width: 720px;
  margin: 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.notice-panel {
  display: grid;
  gap: 8px;
  max-width: 900px;
  margin-bottom: 28px;
  padding: 20px 22px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(173, 141, 88, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.notice-panel strong {
  color: var(--accent-dark);
  font-weight: 820;
}

.notice-panel p {
  margin: 0;
  color: var(--muted);
}

.object-detail-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(185, 145, 84, 0.2), transparent 26rem),
    radial-gradient(circle at 12% 92%, rgba(255, 250, 242, 0.08), transparent 24rem),
    linear-gradient(135deg, #10231f 0%, #17342d 100%);
  border-bottom: 1px solid rgba(16, 35, 31, 0.14);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  gap: 46px;
  align-items: center;
}

.object-detail-hero .object-visual {
  min-height: 430px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-summary {
  display: grid;
  gap: 20px;
}

.detail-summary h1 {
  margin: 0;
  color: #fffdf8;
  font-size: clamp(2.25rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 830;
}

.detail-location {
  margin: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.08rem;
}

.detail-note {
  margin: 0;
  padding: 13px 14px;
  color: rgba(255, 253, 248, 0.82);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 14px;
  font-size: 0.92rem;
}

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

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 44px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 18px;
}

.detail-main p {
  margin: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 650;
}

.provider-box,
.contact-form,
.contact-info,
.package-card,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.provider-box {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 26px;
}

.provider-box p {
  margin: 0;
}

.benefits-grid,
.package-grid {
  display: grid;
  gap: 20px;
}

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

.benefit-card {
  min-height: 218px;
  padding: 26px;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
  transform: none;
  border-color: rgba(173, 141, 88, 0.32);
  box-shadow: var(--shadow);
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 820;
}

.benefit-card h2,
.package-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.18rem, 1.55vw, 1.36rem);
  line-height: 1.2;
}

.benefit-card p,
.package-card p {
  margin: 0;
  color: var(--muted);
}

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

.package-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.package-label {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 6px 11px;
  color: var(--accent-dark);
  background: rgba(239, 232, 220, 0.82);
  border: 1px solid rgba(173, 141, 88, 0.26);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.package-note {
  padding-top: 8px;
  border-top: 1px solid rgba(221, 213, 200, 0.82);
  font-size: 0.92rem;
  font-weight: 680;
}

.package-card.featured {
  border-color: rgba(184, 154, 104, 0.48);
  background:
    radial-gradient(circle at 90% 0%, rgba(184, 154, 104, 0.22), transparent 16rem),
    linear-gradient(180deg, #fffaf0 0%, #f4ead8 100%);
  box-shadow: var(--shadow);
}

.package-card.featured li::before {
  background: var(--brass);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.package-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
}

.process-grid p {
  color: var(--muted);
}

.process-grid ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-grid li {
  position: relative;
  counter-increment: step;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.process-grid li::before {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  content: counter(step);
  font-size: 0.86rem;
  font-weight: 760;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: start;
}

.contact-info {
  padding: 30px;
}

.contact-info p {
  margin: 0 0 14px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.form-note {
  margin: 0;
  padding: 13px 14px;
  color: var(--ink-soft);
  background: rgba(239, 230, 216, 0.62);
  border: 1px solid rgba(185, 145, 84, 0.22);
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.field label {
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 700;
}

.required-label {
  margin-left: 6px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(173, 141, 88, 0.14);
}

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

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.consent a,
.legal-content a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 34px;
  max-width: 900px;
}

.legal-content section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.24rem, 2vw, 1.55rem);
  letter-spacing: 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content p + p {
  margin-top: 14px;
}

.site-footer {
  color: var(--footer-text);
  background: #0d1f1b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.footer-brand-block,
.footer-links-block {
  display: grid;
  gap: 8px;
}

.footer-brand-block p,
.footer-legal-block p,
.footer-links-block a {
  margin: 0;
  color: var(--footer-muted);
  font-size: 0.88rem;
  line-height: 1.76;
}

.footer-project {
  color: #fff !important;
  font-weight: 760;
}

.footer-service {
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-disclaimer {
  max-width: 540px;
  margin-top: 6px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-legal-block h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.05rem;
}

.footer-legal-block p + p {
  margin-top: 12px;
}

.footer-legal-block a,
.footer-links-block a {
  color: var(--footer-muted);
}

.footer-legal-block a:hover,
.footer-links-block a:hover,
.footer-legal-block a:focus-visible,
.footer-links-block a:focus-visible {
  color: #fff;
}

.reveal-section {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1020px) {
  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 1080px) {
  .object-grid,
  .benefits-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .detail-grid,
  .detail-content,
  .contact-layout,
  .split-panel,
  .process-grid,
  .editorial-intro,
  .trust-panel,
  .audience-panel,
  .district-panel {
    grid-template-columns: 1fr;
  }

  .provider-box {
    position: static;
  }

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 18px;
    background: rgba(247, 241, 230, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 52px rgba(16, 35, 31, 0.12);
  }

  .nav a {
    padding: 14px 0;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav-open .nav {
    display: grid;
  }

  .header-inner:has(.menu-toggle:hover) .nav,
  .header-inner:has(.nav:hover) .nav {
    display: grid;
  }

  .platform-hero,
  .page-hero,
  .object-detail-hero {
    background:
      radial-gradient(circle at 84% 4%, rgba(185, 145, 84, 0.2), transparent 20rem),
      linear-gradient(180deg, #10231f 0%, #17342d 100%);
    padding: 58px 0 48px;
  }

  .hero-grid {
    gap: 28px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .hero-panel,
  .broker-cta,
  .contact-form,
  .contact-info,
  .package-card,
  .benefit-card,
  .provider-box {
    padding: 22px;
    border-radius: 18px;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }

  .intro-strip,
  .compact-duo,
  .package-grid,
  .feature-list,
  .trust-grid,
  .district-points {
    grid-template-columns: 1fr;
  }

  .audience-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .broker-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .broker-cta .btn,
  .contact-form .btn,
  .provider-box .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container,
  .site-header .container,
  .platform-hero .container {
    width: min(100% - 24px, 1120px);
  }

  .platform-hero,
  .page-hero,
  .object-detail-hero {
    padding: 42px 0 38px;
  }

  .section {
    padding: 46px 0;
  }

  .brand-mark {
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .brand-mark::before {
    grid-row: 1;
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .brand-title {
    grid-row: 1;
    font-size: 0.95rem;
    max-width: min(58vw, 240px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-actions,
  .section-action {
    display: grid;
    gap: 10px;
  }

  .hero-actions .btn,
  .section-action .btn {
    width: 100%;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy h1,
  .page-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 10.6vw, 2.85rem);
    line-height: 1.07;
  }

  .hero-subline {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(16, 35, 31, 0.14);
  }

  .hero-panel-slide {
    gap: 12px;
  }

  .hero-panel h2 {
    font-size: 1.36rem;
    line-height: 1.18;
  }

  .hero-panel p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .hero-panel-dots {
    margin-top: 16px;
  }

  .object-grid,
  .benefits-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .object-card {
    grid-template-rows: 210px minmax(0, 1fr);
  }

  .object-image-link {
    height: 210px;
  }

  .object-card-body {
    grid-template-rows: auto auto auto auto;
    padding: 18px;
  }

  .object-facts,
  .detail-facts {
    grid-template-columns: 1fr;
  }

  .object-detail-hero .object-visual {
    min-height: 260px;
  }

  .filter-bar span,
  .mini-facts span {
    width: 100%;
    justify-content: center;
  }

  .mini-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .mini-facts span {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .mini-facts span:last-child {
    grid-column: 1 / -1;
  }

  .panel-visual,
  .panel-visual::before {
    min-height: 138px;
  }

  .panel-action {
    width: 100%;
    min-height: 44px;
  }

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

  .section-head h2,
  .split-panel h2,
  .broker-cta h2,
  .contact-info h2,
  .detail-main h2,
  .provider-box h2 {
    font-size: clamp(1.62rem, 8vw, 2.1rem);
  }

  .contact-layout {
    gap: 22px;
  }
}
