:root {
  --red: #b40101;
  --red-dark: #850000;
  --ink: #16202a;
  --muted: #65717d;
  --line: #dfe4e8;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --blue: #123047;
  --shadow: 0 18px 48px rgba(18, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 280px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(180, 1, 1, 0.18);
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.button.secondary.dark {
  color: var(--red);
  background: transparent;
  border-color: rgba(180, 1, 1, 0.35);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 24, 34, 0.92), rgba(12, 24, 34, 0.68) 42%, rgba(12, 24, 34, 0.12)),
    linear-gradient(0deg, rgba(12, 24, 34, 0.32), rgba(12, 24, 34, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero h1,
.page-hero h1 {
  max-width: 830px;
  margin: 0 0 22px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffdad6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-band {
  background: var(--blue);
  color: #fff;
}

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

.trust-grid div {
  min-height: 132px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
}

section {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: 52px;
  align-items: center;
}

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

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.note {
  margin-top: 18px;
  padding: 18px;
  color: #664100;
  background: #fff6de;
  border-left: 4px solid #e3aa29;
  border-radius: 6px;
  font-size: 0.96rem;
}

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

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

.card {
  min-height: 220px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(18, 32, 42, 0.06);
}

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

.number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: var(--red);
  border: 1px solid rgba(180, 1, 1, 0.28);
  border-radius: 50%;
  font-weight: 900;
}

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

.feature-panel {
  min-height: 420px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.feature-panel span {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.85;
}

.feature-panel strong {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.feature-panel small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-band {
  color: #fff;
  background: var(--ink);
  padding: 70px 0;
}

.quote-band p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 850;
}

.page-hero {
  padding: 96px 0 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 48, 71, 0.95), rgba(18, 48, 71, 0.7)),
    url("assets/short-sale-consultation-hero.png") center / cover;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.page-hero .lead {
  max-width: 880px;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(18, 32, 42, 0.06);
}

.process-list h2 {
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

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

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 34px;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-panel a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-panel .button {
  margin-top: 10px;
  text-decoration: none;
}

.light-button {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.search-section {
  padding: 32px 0 72px;
  background: var(--soft);
}

.search-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 32, 42, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.search-frame iframe {
  display: block;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0d1c29;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .brand {
    width: 240px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .split,
  .grid,
  .grid.two,
  .trust-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(12, 24, 34, 0.92), rgba(12, 24, 34, 0.76));
  }

  .button {
    width: 100%;
  }

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

  section {
    padding: 68px 0;
  }
}
