:root {
  --navy: #143650;
  --navy-2: #1f4a67;
  --ink: #1d2a35;
  --muted: #66717a;
  --cream: #f6f2eb;
  --paper: #fffdfa;
  --soft: #edf3f3;
  --sage: #b8d1d4;
  --sage-deep: #426f78;
  --clay: #aa573f;
  --clay-light: #eed7ce;
  --gold: #c5a05d;
  --line: #dcded9;
  --white: #fff;
  --shadow: 0 22px 60px rgba(16, 43, 70, .10);
  --shadow-small: 0 12px 32px rgba(16, 43, 70, .08);
  --radius: 28px;
  --radius-small: 16px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

h1 {
  max-width: 830px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 6.1vw, 6.35rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.3;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #f1cbb9;
}

.lead {
  color: #34414c;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid var(--clay);
  border-radius: 999px;
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 10px 25px rgba(198, 111, 77, .19);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  background: #af5b3d;
  box-shadow: 0 13px 31px rgba(198, 111, 77, .25);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.header-phone:focus-visible,
.situation-card:focus-visible,
.faq-list summary:focus-visible,
.footer-column a:focus-visible,
.mobile-contact a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button-small {
  min-height: 43px;
  padding: 10px 17px;
  font-size: .88rem;
}

.button-light {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover {
  background: var(--cream);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--clay);
  font-size: 1.25em;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(16, 43, 70, .08);
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-sign {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 43, 70, .24);
  border-radius: 50%;
  background: var(--white);
  font-family: Georgia, serif;
  font-size: .94rem;
}

.brand-sign::after {
  position: absolute;
  width: 1px;
  height: 70%;
  background: var(--clay);
  content: "";
  transform: rotate(36deg);
}

.brand-sign span {
  position: absolute;
}

.brand-sign span:first-child {
  top: 5px;
  left: 10px;
}

.brand-sign span:last-child {
  right: 9px;
  bottom: 5px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.03rem;
  letter-spacing: -.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 27px;
}

.primary-nav a {
  position: relative;
  color: #3b4b59;
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-phone {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 11% 7%, rgba(240, 215, 202, .68), transparent 28%),
    linear-gradient(125deg, var(--paper) 0%, var(--cream) 62%, #edf1ec 100%);
}

.hero::before {
  position: absolute;
  top: 12%;
  left: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(16, 43, 70, .08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 770px;
  margin-bottom: 34px;
  color: #44525e;
  font-size: clamp(1.13rem, 1.8vw, 1.42rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 27px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  color: #53616d;
  font-size: .93rem;
}

.hero-note span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--sage-deep);
  background: #dce9e3;
  font-weight: 900;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 470px);
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  inset: -18px 22px 22px -18px;
  border: 1px solid rgba(16, 43, 70, .14);
  border-radius: 230px 230px 32px 32px;
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 600px;
  border-radius: 230px 230px 28px 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 34px;
  width: min(290px, 82%);
  padding: 21px 24px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 16px;
  background: rgba(255, 253, 249, .94);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.hero-caption span {
  display: block;
  margin-bottom: 5px;
  color: var(--clay);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-caption strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: -28px;
  width: 72px;
  height: 72px;
  border: 12px solid var(--clay-light);
  border-radius: 50%;
}

.trust-bar {
  border-top: 1px solid rgba(16, 43, 70, .06);
  border-bottom: 1px solid rgba(16, 43, 70, .09);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  display: grid;
  min-height: 124px;
  margin: 0;
  padding: 28px 34px;
  grid-template-columns: auto 1fr;
  column-gap: 17px;
  align-content: center;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}

.trust-grid p + p {
  border-left: 1px solid var(--line);
}

.trust-grid span {
  grid-row: 1 / 3;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.trust-grid strong {
  color: var(--navy);
  font-size: .95rem;
}

.section {
  padding: clamp(86px, 10vw, 142px) 0;
}

.section-heading {
  max-width: 650px;
}

.section-heading.wide {
  max-width: 850px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(45px, 9vw, 120px);
}

.intro-copy {
  padding-top: 18px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.question-grid {
  display: grid;
  margin-top: 66px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.question-grid article {
  position: relative;
  padding: 38px 36px 38px 68px;
}

.question-grid article + article {
  border-left: 1px solid var(--line);
}

.question-grid h3 {
  margin-bottom: 10px;
}

.question-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .94rem;
}

.question-mark {
  position: absolute;
  top: 37px;
  left: 24px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
  font-family: Georgia, serif;
}

.section-soft {
  background: var(--soft);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.situation-card {
  position: relative;
  min-height: 260px;
  padding: 30px 27px;
  border: 1px solid rgba(16, 43, 70, .1);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.situation-card::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--clay);
  content: "→";
  font-size: 1.35rem;
  transition: transform .2s ease;
}

.situation-card:hover,
.situation-card.is-selected {
  border-color: rgba(198, 111, 77, .55);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.situation-card:hover::after,
.situation-card.is-selected::after {
  transform: translateX(4px);
}

.situation-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.situation-card strong {
  display: block;
  margin-bottom: 13px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.situation-card small {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.selection-hint {
  min-height: 28px;
  margin: 22px 0 0;
  color: var(--sage-deep);
  font-size: .92rem;
  font-weight: 750;
  text-align: center;
}

.privacy-story {
  overflow: hidden;
  color: rgba(255, 255, 255, .8);
  background:
    radial-gradient(circle at 100% 0, rgba(198, 111, 77, .24), transparent 31%),
    var(--navy);
}

.privacy-grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  align-items: center;
  gap: clamp(50px, 10vw, 130px);
}

.privacy-copy h2 {
  color: var(--white);
}

.privacy-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 31px;
  font-size: 1.12rem;
}

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

.privacy-list li {
  display: grid;
  padding: 26px 0;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.privacy-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.privacy-list > li > span {
  color: #e5a78e;
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.privacy-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.04rem;
}

.privacy-list p {
  margin: 0;
  font-size: .92rem;
}

.options-section {
  background: var(--paper);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.option-card {
  position: relative;
  min-height: 260px;
  padding: 38px 42px 34px 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.option-card::after {
  position: absolute;
  right: -65px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(16, 43, 70, .09);
  border-radius: 50%;
  content: "";
}

.option-featured {
  border-color: transparent;
  background: var(--clay-light);
}

.option-number {
  position: absolute;
  top: 38px;
  left: 40px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(16, 43, 70, .2);
  border-radius: 50%;
  color: var(--clay);
  font-family: Georgia, serif;
}

.option-card h3 {
  margin-bottom: 13px;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.option-card p {
  max-width: 480px;
  margin-bottom: 20px;
  color: var(--muted);
}

.option-card a {
  position: relative;
  z-index: 2;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.option-card a span {
  color: var(--clay);
}

.value-section {
  background: var(--cream);
}

.value-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  align-items: center;
  gap: clamp(55px, 10vw, 140px);
}

.value-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: 260px 260px 25px 25px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(222, 230, 224, .9)),
    var(--sage);
}

.value-visual::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border: 50px solid rgba(198, 111, 77, .12);
  border-radius: 50%;
  content: "";
}

.value-visual > p {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 30px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.14rem;
  line-height: 1.25;
}

.value-house {
  position: relative;
  width: 230px;
  height: 210px;
}

.value-house .roof {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 28px;
  width: 176px;
  height: 176px;
  border: 4px solid var(--navy);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.value-house .wall {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 142px;
  border: 4px solid var(--navy);
  background: rgba(255, 255, 255, .5);
}

.value-house .door {
  position: absolute;
  z-index: 3;
  bottom: 4px;
  left: 96px;
  width: 40px;
  height: 82px;
  border: 4px solid var(--clay);
  border-bottom: 0;
}

.value-house .window {
  position: absolute;
  z-index: 3;
  bottom: 70px;
  width: 38px;
  height: 38px;
  border: 4px solid var(--navy);
}

.window-one {
  left: 44px;
}

.window-two {
  right: 44px;
}

.value-line {
  position: absolute;
  height: 1px;
  background: rgba(16, 43, 70, .2);
}

.line-one {
  right: 12%;
  bottom: 22%;
  left: 12%;
}

.line-two {
  top: 18%;
  right: 20%;
  left: 20%;
}

.value-copy blockquote {
  position: relative;
  margin: 36px 0 0;
  padding: 25px 0 0 48px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.45;
}

.value-copy blockquote::before {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--clay);
  content: "“";
  font-size: 4rem;
  line-height: 1;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 270px;
  padding: 35px 36px;
}

.process-grid li + li {
  border-left: 1px solid var(--line);
}

.process-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

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

.principles-section {
  background:
    linear-gradient(90deg, rgba(238, 242, 239, .92), rgba(247, 244, 237, .75)),
    var(--soft);
}

.principles-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(50px, 10vw, 140px);
}

.principles-list article {
  display: grid;
  padding: 22px 0;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(16, 43, 70, .13);
}

.principles-list article:first-child {
  border-top: 1px solid rgba(16, 43, 70, .13);
}

.principles-list span {
  color: var(--clay);
  font-family: Georgia, serif;
}

.principles-list h3 {
  margin-bottom: 5px;
}

.principles-list p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  align-items: start;
  gap: clamp(55px, 10vw, 135px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 56px 25px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 20px;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin-bottom: 25px;
  padding-right: 52px;
  color: var(--muted);
}

.contact-section {
  color: rgba(255, 255, 255, .78);
  background:
    radial-gradient(circle at 18% 0, rgba(198, 111, 77, .25), transparent 35%),
    var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  align-items: start;
  gap: clamp(55px, 10vw, 130px);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  font-size: 1.08rem;
}

.direct-contact {
  display: grid;
  margin-top: 45px;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 19px;
}

.contact-avatar {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.direct-contact div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.direct-contact small {
  margin-bottom: 3px;
  color: #e8ad94;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.direct-contact strong {
  margin-bottom: 6px;
  color: var(--white);
}

.direct-contact a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
}

.form-card {
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
}

.form-card-head {
  display: flex;
  padding: 24px 30px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  background: var(--cream);
}

.form-card-head span {
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.form-card-head small {
  color: var(--sage-deep);
  font-size: .78rem;
  font-weight: 750;
}

.form-card form {
  padding: 30px;
}

.field {
  margin-bottom: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field label {
  display: flex;
  margin-bottom: 8px;
  justify-content: space-between;
  color: var(--navy);
  font-size: .87rem;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-size: .73rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ccd2d1;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input,
.field select {
  height: 51px;
  padding: 0 14px;
}

.field textarea {
  min-height: 135px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(198, 111, 77, .14);
}

.field textarea::placeholder {
  color: #66717a;
}

.form-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.55;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--sage-deep);
  font-size: .84rem;
  font-weight: 750;
}

.site-footer {
  padding: 72px 0 24px;
  color: #4d5b66;
  background: #eef0ec;
}

.footer-main {
  display: grid;
  padding-bottom: 50px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 55px;
}

.footer-brand > p {
  max-width: 380px;
  margin: 23px 0 0;
  font-size: .91rem;
}

.brand-footer .brand-sign {
  background: transparent;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #56646e;
  font-size: .87rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--clay);
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
  border-top: 1px solid #d4d9d5;
  color: #56646e;
  font-size: .76rem;
}

.mobile-contact {
  display: none;
}

/* Rechtliche Seiten */
.legal-hero {
  padding: 80px 0 70px;
  background: var(--cream);
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: 1fr .55fr;
  align-items: end;
  gap: 70px;
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 6vw, 5.5rem);
}

.legal-hero .lead {
  margin-bottom: 0;
}

.legal-aside {
  padding: 25px 28px;
  border-left: 3px solid var(--clay);
  background: rgba(255, 255, 255, .58);
}

.legal-aside strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
}

.legal-aside p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 80px;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: flex;
  padding-left: 18px;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid var(--line);
}

.legal-nav a {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--clay);
}

.legal-content {
  max-width: 820px;
}

.legal-section {
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 17px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-section h3 {
  margin-top: 30px;
}

.legal-section p,
.legal-section li,
.legal-section dd {
  color: #53606a;
}

.legal-section a {
  color: var(--navy);
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--clay) !important;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.legal-data {
  display: grid;
  margin: 26px 0 0;
  grid-template-columns: 230px 1fr;
}

.legal-data dt,
.legal-data dd {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.legal-data dt {
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
}

.legal-data dd {
  margin: 0;
}

@media (max-width: 1080px) {
  .header-phone {
    display: none;
  }

  .primary-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr .72fr;
    gap: 45px;
  }

  .hero-media img {
    height: 540px;
  }

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

  .footer-main {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-actions .button {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 998;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 55px 24px;
    overflow-y: auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background: var(--paper);
    overscroll-behavior: contain;
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    width: min(100%, 560px);
    margin-inline: auto;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, serif;
    font-size: 1.7rem;
    font-weight: 500;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-grid,
  .intro-grid,
  .privacy-grid,
  .value-grid,
  .principles-grid,
  .faq-grid,
  .contact-grid,
  .legal-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    justify-self: center;
    width: min(86%, 570px);
  }

  .hero-media img {
    height: 600px;
  }

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

  .trust-grid p {
    min-height: auto;
  }

  .trust-grid p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .question-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .value-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .process-grid li {
    display: grid;
    min-height: auto;
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }

  .process-grid li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-grid span {
    margin: 0;
  }

  .contact-copy {
    max-width: 680px;
  }

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

  .footer-column:last-child {
    grid-column: 2 / 4;
  }

  .legal-aside {
    max-width: 620px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .legal-nav {
    position: static;
    padding: 0 0 18px;
    flex-flow: row wrap;
    gap: 10px 19px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 61px;
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    position: sticky;
  }

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

  .brand-sign {
    width: 40px;
    height: 40px;
  }

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

  .brand-copy small {
    font-size: .58rem;
  }

  .primary-nav {
    top: 72px;
  }

  .hero {
    padding: 52px 0 67px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media {
    width: 100%;
    margin-top: 8px;
  }

  .hero-media img {
    height: 430px;
    border-radius: 170px 170px 22px 22px;
  }

  .hero-media::before {
    border-radius: 180px 180px 25px 25px;
  }

  .hero-caption {
    right: 10px;
    bottom: 20px;
  }

  .hero-orbit {
    left: -12px;
  }

  .trust-grid p {
    padding: 22px 6px;
  }

  .section {
    padding: 80px 0;
  }

  .question-grid article {
    padding-right: 12px;
    padding-left: 46px;
  }

  .question-mark {
    left: 4px;
  }

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

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

  .privacy-list li {
    grid-template-columns: 36px 1fr;
  }

  .option-card {
    min-height: auto;
    padding: 82px 24px 28px;
  }

  .option-number {
    top: 25px;
    left: 24px;
  }

  .value-visual {
    min-height: 420px;
  }

  .value-house {
    transform: scale(.78);
  }

  .process-grid li {
    padding: 28px 7px;
  }

  .principles-list article {
    grid-template-columns: 38px 1fr;
  }

  .faq-list summary {
    padding-right: 44px;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .form-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .form-card form {
    padding: 24px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-column:last-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 61px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .18);
    background: var(--navy);
    box-shadow: 0 -10px 30px rgba(16, 43, 70, .16);
  }

  .mobile-contact a {
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: .89rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-contact a + a {
    border-left: 1px solid rgba(255, 255, 255, .2);
    background: var(--clay);
  }

  .legal-hero {
    padding: 58px 0;
  }

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

  .legal-data dt {
    padding-bottom: 3px;
  }

  .legal-data dd {
    padding-top: 3px;
    border-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* Wohnungsspezifische Gestaltung */
.apartment-hero {
  background:
    radial-gradient(circle at 12% 6%, rgba(184, 209, 212, .55), transparent 29%),
    linear-gradient(125deg, var(--paper) 0%, var(--cream) 58%, #eaf1f1 100%);
}

.apartment-hero .hero-grid {
  grid-template-columns: minmax(0, .98fr) minmax(430px, 1.02fr);
  gap: clamp(42px, 6vw, 78px);
}

.apartment-hero-media {
  width: min(100%, 610px);
}

.apartment-hero-media::before {
  inset: -16px 18px 18px -16px;
  border-radius: 38px;
}

.apartment-hero-media img {
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 34px;
  object-position: 50% 50%;
}

.apartment-hero-media .hero-caption {
  right: 20px;
  bottom: 20px;
  width: min(320px, 72%);
}

.apartment-focus {
  overflow: hidden;
  background: var(--paper);
}

.apartment-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.apartment-focus-media {
  position: relative;
}

.apartment-focus-media::before {
  position: absolute;
  inset: -20px 28px 24px -20px;
  border: 1px solid rgba(20, 54, 80, .14);
  border-radius: 32px;
  content: "";
}

.apartment-focus-media img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-label {
  position: absolute;
  right: -28px;
  bottom: 34px;
  width: min(310px, 84%);
  padding: 21px 24px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 16px;
  background: rgba(255, 253, 250, .95);
  box-shadow: var(--shadow-small);
}

.image-label span {
  display: block;
  margin-bottom: 6px;
  color: var(--clay);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.image-label strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
}

.apartment-focus-copy .lead {
  margin-bottom: 34px;
}

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

.check-list li {
  display: grid;
  padding: 21px 0;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.check-list li > span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.check-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.check-list p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.premarket-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 209, 212, .15), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, #173f5b 100%);
}

.premarket-list li {
  padding-block: 20px;
}

.buyer-grid .option-card a {
  margin-top: 26px;
}

.searcher-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(184, 209, 212, .48), transparent 28%),
    linear-gradient(145deg, #f8f5ef 0%, #eaf2f2 100%);
}

.searcher-layout {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.searcher-layout .section-heading {
  position: sticky;
  top: 125px;
}

.searcher-layout .section-heading > p:last-child {
  color: var(--muted);
}

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

.searcher-card {
  display: flex;
  min-height: 390px;
  padding: 34px;
  flex-direction: column;
  border: 1px solid rgba(20, 54, 80, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-small);
}

.searcher-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 58px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.searcher-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.searcher-card p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: .94rem;
}

.searcher-card .button {
  width: 100%;
  margin-top: auto;
  padding-inline: 18px;
  font-size: .9rem;
}

.button-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(20, 54, 80, .16);
}

.motives-section {
  background: linear-gradient(180deg, #f5f7f5 0%, var(--paper) 100%);
}

.motives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.motives-grid article {
  min-height: 250px;
  padding: 31px 30px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
}

.motives-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.motives-grid h3 {
  margin-bottom: 10px;
}

.motives-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
}

.apartment-value {
  background:
    radial-gradient(circle at 76% 22%, rgba(184, 209, 212, .24), transparent 28%),
    var(--cream);
}

.apartment-value-visual {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .84), rgba(232, 241, 241, .9)),
    var(--white);
}

.floor-stack {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 232px;
  height: 250px;
  padding: 24px 20px;
  border: 3px solid var(--navy);
  border-bottom-width: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 18px 18px 0 rgba(184, 209, 212, .6);
  transform: translateX(-50%);
}

.floor-stack::before {
  position: absolute;
  top: -20px;
  right: -14px;
  left: -14px;
  height: 20px;
  background: var(--navy);
  content: "";
}

.floor-stack::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 52px;
  height: 72px;
  border: 3px solid var(--navy);
  border-bottom: 0;
  background: var(--clay-light);
  content: "";
}

.floor-stack span {
  display: inline-block;
  width: 65px;
  height: 45px;
  margin: 13px 12px;
  border: 3px solid var(--navy);
  background: linear-gradient(135deg, #dcebed, #fff);
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}

.consent-field {
  display: grid;
  margin: 4px 0 20px;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  color: #4e5d68;
  font-size: .79rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-field input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--clay);
}

.consent-field a,
.form-note a {
  color: var(--navy);
  font-weight: 750;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a43f36;
  box-shadow: 0 0 0 3px rgba(164, 63, 54, .13);
}

.consent-field input[aria-invalid="true"] {
  outline: 3px solid rgba(164, 63, 54, .3);
  outline-offset: 2px;
}

.consent-field input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.form-status[data-state="error"] {
  color: #a43f36;
}

.form-status[data-state="success"] {
  color: var(--sage-deep);
}

.trap-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 1080px) {
  .apartment-hero .hero-grid {
    grid-template-columns: minmax(0, .96fr) minmax(380px, 1.04fr);
  }
}

@media (max-width: 900px) {
  .apartment-hero .hero-grid,
  .apartment-focus-grid,
  .searcher-layout {
    grid-template-columns: 1fr;
  }

  .apartment-hero-media {
    width: min(90%, 650px);
  }

  .apartment-focus-grid {
    gap: 68px;
  }

  .searcher-layout .section-heading {
    position: static;
  }

  .apartment-focus-media {
    width: min(92%, 680px);
    margin-inline: auto;
  }

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

@media (max-width: 680px) {
  .apartment-hero-media {
    width: 100%;
  }

  .apartment-hero-media img {
    height: auto;
    border-radius: 26px;
  }

  .apartment-hero-media::before {
    border-radius: 29px;
  }

  .apartment-hero-media .hero-caption {
    right: 12px;
    bottom: 12px;
    width: min(290px, 82%);
  }

  .apartment-focus-grid {
    gap: 58px;
  }

  .apartment-focus-media {
    width: 100%;
  }

  .apartment-focus-media::before {
    inset: -11px 12px 13px -11px;
  }

  .image-label {
    right: 12px;
    bottom: 18px;
  }

  .check-list li {
    grid-template-columns: 38px 1fr;
  }

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

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

  .searcher-card > span {
    margin-bottom: 34px;
  }

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

  .motives-grid article {
    min-height: auto;
  }

  .motives-grid article > span {
    margin-bottom: 25px;
  }

  .floor-stack {
    transform: translateX(-50%) scale(.83);
  }

  .form-card-head small {
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 8px;
  }

  .brand-sign {
    width: 36px;
    height: 36px;
  }

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

  .brand-copy small {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }
}
