:root {
  --petrol-950: #183f4d;
  --petrol-900: #214b59;
  --petrol-800: #2e6271;
  --copper-700: #9c4d49;
  --copper-600: #af5b55;
  --copper-100: #f3ded9;
  --stone-50: #fbf9f4;
  --stone-100: #f5efe6;
  --stone-200: #e5d9ca;
  --eucalyptus-100: #f4e7df;
  --eucalyptus-200: #e7d2c7;
  --graphite: #2c3639;
  --muted: #5b696c;
  --white: #ffffff;
  --error: #a32626;
  --shadow: 0 18px 46px rgba(24, 63, 77, 0.12);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--graphite);
  background: var(--stone-50);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button,
input,
textarea { font: inherit; }

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--petrol-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.operator-bar {
  padding: 7px 20px;
  color: var(--white);
  background: var(--petrol-950);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(250, 249, 245, 0.97);
  border-bottom: 1px solid rgba(21, 60, 64, 0.13);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--petrol-950);
  font-weight: 750;
  letter-spacing: 0.01em;
}

.brand img {
  width: 106px;
  height: auto;
}

.brand span {
  padding-left: 16px;
  border-left: 1px solid var(--stone-200);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-navigation a {
  position: relative;
  color: var(--petrol-950);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--copper-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.menu-button {
  display: none;
  width: 58px;
  min-height: 48px;
  padding: 9px 10px;
  color: var(--petrol-950);
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.menu-button b {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  white-space: nowrap;
}

.intro-section { padding-bottom: 58px; }

.banner-photo,
.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--stone-200);
}

.banner-photo {
  width: 100%;
  height: clamp(124px, 14vw, 188px);
  border-bottom: 1px solid rgba(21, 60, 64, 0.14);
}

.banner-photo img,
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-photo img { object-position: center 55%; }

figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  padding: 4px 8px;
  color: var(--white);
  background: rgba(16, 47, 51, 0.82);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
  padding-top: 48px;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper-700);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { overflow-wrap: break-word; }

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--petrol-950);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.3vw, 58px);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3vw, 42px);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

p { margin-top: 0; }

.lead {
  max-width: 690px;
  margin-bottom: 27px;
  color: #425559;
  font-size: 19px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--copper-700);
}

.button-primary:hover { background: #86442f; }

.button-secondary {
  color: var(--petrol-950);
  background: transparent;
  border-color: var(--petrol-800);
}

.button-secondary:hover { background: var(--eucalyptus-100); }

.hero-photo {
  height: 318px;
  border-radius: 44px 6px 44px 6px;
  box-shadow: var(--shadow);
}

.hero-photo img { object-position: center 48%; }

.route-line {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.route {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 19px 20px;
  color: var(--petrol-950);
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 9px 25px rgba(16, 47, 51, 0.07);
  transition: transform 160ms ease, border-color 160ms ease;
}

.route:hover {
  border-color: var(--copper-600);
  transform: translateY(-2px);
}

.route b {
  color: var(--copper-700);
  font-size: 14px;
}

.route span {
  display: grid;
  gap: 2px;
  font-weight: 780;
  line-height: 1.3;
}

.route small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-primary {
  color: var(--white);
  background: var(--petrol-900);
  border-color: var(--petrol-900);
}

.route-primary b,
.route-primary small { color: #f3c8b8; }

.feature-section,
.seller-section,
.buyer-section,
.trust-section { padding: 90px 0; }

.feature-section {
  background: var(--eucalyptus-100);
  border-block: 1px solid var(--eucalyptus-200);
}

.section-heading.narrow {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.narrow > p:last-child,
.editorial-copy p,
.trust-layout > p { color: var(--muted); }

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(21, 60, 64, 0.18);
  border: 1px solid rgba(21, 60, 64, 0.18);
  border-radius: var(--radius);
}

.feature-row article {
  min-height: 235px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.87);
}

.feature-row article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper-700);
  font-size: 13px;
  font-weight: 800;
}

.feature-row article p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(390px, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 94px);
}

.editorial-reverse { grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr); }

.seller-photo,
.buyer-photo {
  height: 455px;
  border-radius: 34px 6px 34px 6px;
  box-shadow: var(--shadow);
}

.seller-photo img { object-position: center 56%; }
.buyer-photo img { object-position: center 48%; }

.buyer-image-left .editorial-copy {
  grid-column: 2;
  grid-row: 1;
}

.buyer-image-left .buyer-photo {
  grid-column: 1;
  grid-row: 1;
}

.editorial-copy { max-width: 600px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 7px;
  color: var(--copper-700);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

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

.situations-section {
  padding: 82px 0;
  background: var(--stone-100);
  border-block: 1px solid var(--stone-200);
}

.situations-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 7vw, 100px);
}

.situations-intro { max-width: 440px; }

.situations-list {
  border-top: 1px solid var(--stone-200);
}

.situations-list article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--stone-200);
}

.situations-list h3,
.situations-list p { margin: 0; }

.situations-list p {
  color: var(--muted);
  font-size: 16px;
}

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

.combined-section {
  color: var(--white);
  background: var(--petrol-900);
}

.family-change { background: #884640; }
.family-change .eyebrow { color: #ffe2d8; }

.combined-inner {
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding-block: 54px;
}

.combined-inner > div { max-width: 760px; }
.combined-inner h2,
.combined-inner p { color: var(--white); }
.combined-inner p:last-child { margin-bottom: 0; color: #dbe7e4; }
.combined-inner .eyebrow { color: #f2bfaa; }
.light-link { flex: 0 0 auto; color: var(--white); }

.trust-section { background: #e4eded; }

.trust-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
}

.trust-layout h2 { margin-bottom: 0; }
.trust-layout > p { margin: 28px 0 0; }

.form-section {
  padding: 92px 0 104px;
  background: var(--stone-100);
}

.form-shell {
  max-width: 880px;
}

#contact-form {
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-top: 5px solid var(--copper-700);
  border-radius: 10px 10px 0 0;
  box-shadow: var(--shadow);
}

#contact-form h2 { margin-bottom: 28px; }

.intent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

.intent-options label { cursor: pointer; }
.intent-options input { position: absolute; opacity: 0; pointer-events: none; }

.intent-options span {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--petrol-950);
  background: var(--stone-100);
  border: 2px solid var(--stone-200);
  border-radius: 9px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  text-align: center;
}

.intent-options input:checked + span {
  color: var(--white);
  background: var(--petrol-900);
  border-color: var(--petrol-900);
  box-shadow: inset 0 -4px 0 #d99072;
}

.field { margin-bottom: 23px; }

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--petrol-950);
  font-size: 16px;
  font-weight: 760;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--graphite);
  background: var(--white);
  border: 1.5px solid #91a19e;
  border-radius: 7px;
  outline: 0;
}

.field input { height: 52px; padding: 9px 13px; }
.field textarea { min-height: 170px; padding: 13px; resize: vertical; }
.field textarea::placeholder { color: #687779; opacity: 1; }

.field input:focus,
.field textarea:focus {
  border-color: var(--copper-700);
  box-shadow: 0 0 0 4px rgba(157, 83, 59, 0.16);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--error); }

.field-error {
  min-height: 0;
  margin: 5px 0 0;
  color: var(--error);
  font-size: 14px;
  font-weight: 650;
}

.field-error:empty { display: none; }

.personal-fields {
  margin: 4px 0 26px;
  padding: 0;
  border-block: 1px solid var(--stone-200);
}

.personal-fields summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--petrol-950);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.personal-fields summary::-webkit-details-marker { display: none; }
.personal-fields summary::after { content: "+"; color: var(--copper-700); font-size: 28px; font-weight: 400; }
.personal-fields[open] summary::after { content: "−"; }

.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  padding-top: 12px;
}

.personal-grid .full { grid-column: 1 / -1; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 8px;
  font-size: 15px;
  cursor: pointer;
}

.consent input {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--petrol-900);
}

.consent a { color: var(--copper-700); font-weight: 700; }

.submit-button {
  width: 100%;
  margin-top: 21px;
}

.privacy-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.form-status {
  min-height: 0;
  margin-top: 9px;
  color: var(--petrol-900);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-status:empty { display: none; }

.personal-contact {
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: var(--petrol-900);
  border-radius: 0 0 10px 10px;
}

.personal-contact .eyebrow { color: #f2bfaa; }
.personal-contact h2 { max-width: 650px; color: var(--white); }

.contact-name {
  margin: 0 0 24px;
  color: #e1ebe8;
  font-weight: 700;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-links a {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 17px 19px;
  color: var(--petrol-950);
  background: var(--white);
  border-radius: 8px;
  text-decoration: none;
}

.contact-links span {
  color: var(--copper-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 34px 0 26px;
  color: var(--white);
  background: #102f3a;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p { margin: 0; }

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px 21px;
}

.footer-inner a,
.image-note a { color: inherit; text-underline-offset: 4px; }

.image-note {
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 20px;
  color: #c9d7d4;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d26d4b;
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  :root { --shell: min(100% - 38px, 940px); }

  .brand span { display: none; }
  .main-navigation { gap: 19px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero-photo { height: 300px; }
  .editorial-grid,
  .editorial-reverse { gap: 46px; }
  .seller-photo,
  .buyer-photo { height: 410px; }
  .situations-list article { grid-template-columns: 180px 1fr; }
}

@media (max-width: 768px) {
  :root { --shell: min(100% - 32px, 700px); }

  html { scroll-padding-top: 82px; }
  body { font-size: 17px; }

  .header-inner { min-height: 68px; }
  .brand img { width: 94px; }
  .menu-button { display: block; }

  .main-navigation {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 20px;
    background: var(--stone-50);
    border-bottom: 1px solid var(--stone-200);
    box-shadow: 0 14px 28px rgba(16, 47, 51, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .main-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-navigation a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 9px;
    border-bottom: 1px solid var(--stone-200);
  }

  .main-navigation a::after { display: none; }
  .banner-photo { height: 128px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 34px;
  }

  .hero-copy { max-width: none; }
  .buyer-image-left .editorial-copy,
  .buyer-image-left .buyer-photo {
    grid-column: auto;
    grid-row: auto;
  }
  .buyer-image-left .editorial-copy { order: 1; }
  .buyer-image-left .buyer-photo { order: 2; }
  h1 { font-size: clamp(35px, 8vw, 44px); }
  h2 { font-size: clamp(29px, 6vw, 36px); }
  .lead { font-size: 18px; }
  .hero-photo { height: clamp(215px, 57vw, 285px); order: 2; }
  .route-line { grid-template-columns: 1fr; margin-top: 25px; }
  .route { min-height: 79px; }

  .feature-section,
  .seller-section,
  .buyer-section,
  .trust-section { padding: 68px 0; }

  .feature-row { grid-template-columns: 1fr; }
  .feature-row article { min-height: 0; }

  .editorial-grid,
  .editorial-reverse {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .editorial-copy { max-width: none; order: 1; }
  .seller-photo,
  .buyer-photo { height: clamp(260px, 72vw, 400px); order: 2; }

  .situations-section { padding: 66px 0; }
  .situations-layout { grid-template-columns: 1fr; gap: 27px; }
  .situations-intro { max-width: none; }

  .combined-inner {
    min-height: 0;
    display: grid;
    gap: 22px;
    padding-block: 46px;
  }

  .light-link { justify-self: start; }
  .trust-layout { grid-template-columns: 1fr; gap: 20px; }
  .trust-layout > p { margin-top: 0; }
  .form-section { padding: 68px 0 78px; }
  .intent-options { grid-template-columns: 1fr; }
  .intent-options span { min-height: 56px; justify-content: flex-start; text-align: left; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 26px); }

  .operator-bar { padding-inline: 12px; font-size: 13px; }
  .intro-section { padding-bottom: 48px; }
  .banner-photo { height: 112px; }
  h1 { font-size: clamp(33px, 9.5vw, 39px); }
  h2 { font-size: clamp(27px, 7.8vw, 33px); }
  h3 { font-size: 20px; }
  .button { width: 100%; }
  .hero-photo { height: clamp(205px, 60vw, 250px); border-radius: 3px 23px 3px 23px; }

  .feature-row article { padding: 25px 22px; }
  .feature-row article > span { margin-bottom: 18px; }

  .seller-photo,
  .buyer-photo { height: clamp(248px, 77vw, 340px); border-radius: 20px 4px 20px 4px; }

  .situations-list article { grid-template-columns: 1fr; gap: 7px; }
  #contact-form { padding: 29px 18px 34px; }
  .personal-grid { grid-template-columns: 1fr; gap: 0; }
  .personal-grid .full { grid-column: auto; }
  .personal-contact { padding: 31px 19px; }
  .contact-links { grid-template-columns: 1fr; }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .footer-inner nav { justify-content: flex-start; }
}

@media (max-width: 340px) {
  :root { --shell: calc(100% - 20px); }
  .brand img { width: 86px; }
  .menu-button { width: 56px; }
  h1 { font-size: 31px; hyphens: manual; }
  h2 { font-size: 27px; }
  .route { padding-inline: 15px; }
  #contact-form { padding-inline: 14px; }
  .personal-contact { padding-inline: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
