:root {
  --ink: #07111f;
  --navy: #0b1424;
  --navy-2: #101c31;
  --blue: #165c7d;
  --gold: #e4bc48;
  --gold-dark: #8b641c;
  --paper: #f8fafc;
  --mist: #e8eef4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body.is-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  padding: 10px clamp(76px, 7vw, 104px);
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(228, 188, 72, 0.42);
}

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

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 2px var(--white);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 540;
  line-height: 1.08;
}

.brand small {
  color: var(--gold);
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
  font-weight: 430;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex: 1 1 auto;
  gap: clamp(12px, 1.45vw, 22px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.9rem, 1.08vw, 1.03rem);
  font-weight: 460;
}

.site-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: 12px;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 16px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.72;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 50;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(228, 188, 72, 0.34);
  border-radius: 8px;
  background: rgba(3, 7, 13, 0.98);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-active .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown-menu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.15;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--ink);
  background: var(--gold);
  outline: 0;
}

.header-phone {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: clamp(8px, 1.4vw, 22px);
  margin-right: clamp(18px, 2vw, 34px);
  padding: 10px 20px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--gold);
  font-size: clamp(0.98rem, 1.35vw, 1.2rem);
  font-weight: 640;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 1260px;
  padding: clamp(54px, 7vw, 104px) clamp(20px, 3vw, 56px) clamp(42px, 6vw, 72px);
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(8, 18, 33, 0.96) 0%, rgba(8, 18, 33, 0.88) 42%, rgba(8, 18, 33, 0.7) 100%),
    url("assets/hero-note-closing.png");
  background-size: cover;
  background-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(228, 188, 72, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(48vw, 720px);
  margin-left: clamp(150px, 13vw, 210px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: clamp(0.82rem, 1.02vw, 1.02rem);
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.no-break {
  white-space: nowrap;
}

.hero h1,
.section-heading h2,
.process h2,
.contact h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6.2vw, 5.75rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy {
  max-width: 585px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.5;
}

.desktop-break {
  display: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(16, 28, 49, 0.62);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 9px 15px;
  border: 1px solid rgba(228, 188, 72, 0.52);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(16, 28, 49, 0.56);
  font-weight: 650;
}

.quote-card {
  position: absolute;
  top: clamp(86px, 12vh, 126px);
  right: clamp(220px, 18vw, 290px);
  z-index: 1;
  display: grid;
  gap: 12px;
  height: auto;
  max-height: none;
  overflow: visible;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(228, 188, 72, 0.82);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(241, 241, 242, 0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  width: min(32vw, 450px);
}

.quote-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 2.15vw, 2.25rem);
  line-height: 1.05;
}

.quote-card p {
  margin: 0;
  color: #5c6a83;
  font-size: clamp(0.92rem, 1.08vw, 1.04rem);
  font-weight: 500;
}

.quote-card p strong,
.quote-card label {
  color: var(--navy);
}

.quote-card label {
  display: grid;
  gap: 6px;
  font-weight: 640;
}

.quote-card label span {
  color: #5c6a83;
  font-weight: 540;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd8e6;
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 500;
  padding: 10px 12px;
}

.quote-card textarea {
  min-height: 82px;
  resize: vertical;
}

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

.checkbox-label {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 12px !important;
}

.checkbox-label input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1500px) {
  .site-header {
    gap: 12px;
    min-height: 88px;
    padding-inline: clamp(76px, 7vw, 104px);
  }

  .brand img {
    width: 70px;
    height: 70px;
  }

  .brand strong {
    font-size: 1.02rem;
    font-weight: 540;
  }

  .brand small {
    font-size: 0.76rem;
    font-weight: 430;
  }

  .site-nav {
    gap: 13px;
    font-size: 0.9rem;
    font-weight: 460;
  }

  .header-phone {
    min-height: 44px;
    padding: 9px 15px;
    font-size: 1rem;
    font-weight: 620;
  }

  .hero {
    min-height: 1260px;
    padding-top: 88px;
  }

  .hero h1 {
    max-width: 580px;
    font-size: clamp(3rem, 4.65vw, 4.2rem);
    font-weight: 650;
  }

  .hero-copy {
    max-width: 585px;
    font-size: 1rem;
  }

  .hero-badges {
    margin-top: 26px;
  }

  .quote-card {
    right: clamp(220px, 18vw, 290px);
    gap: 11px;
    padding: 24px;
    width: min(31vw, 445px);
  }

  .quote-card input,
  .quote-card select {
    min-height: 42px;
  }

  .quote-card textarea {
    min-height: 76px;
  }
}

.notes-highlight {
  padding: clamp(30px, 5vw, 62px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 98px);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #ffffff 100%);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.notes-feature {
  display: block;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(228, 188, 72, 0.58);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(11, 20, 36, 0.98), rgba(16, 28, 49, 0.92)),
    url("assets/hero-note-closing.png");
  background-size: cover;
  background-position: center 58%;
  box-shadow: 0 20px 54px rgba(7, 17, 31, 0.16);
}

.notes-feature-copy {
  max-width: 100%;
}

.popular-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(228, 188, 72, 0.58);
  border-radius: 6px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notes-feature h2 {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.notes-feature p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.notes-banner-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 26px;
}

.notes-banner-actions .button {
  width: 100%;
}

.notes-picture-box {
  position: relative;
  width: 100%;
  min-height: 420px;
  margin-top: 18px;
  overflow: hidden;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(228, 188, 72, 0.54);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 18%, rgba(228, 188, 72, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(7, 17, 31, 0.56));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 42px rgba(0, 0, 0, 0.28);
}

.notes-picture-box > img {
  position: absolute;
  inset: clamp(14px, 2vw, 22px);
  width: calc(100% - (clamp(14px, 2vw, 22px) * 2));
  height: calc(100% - (clamp(14px, 2vw, 22px) * 2));
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 7px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.notes-picture-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 17, 31, 0.12));
  pointer-events: none;
}

.notes-picture-box::before {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(228, 188, 72, 0.8);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(228, 188, 72, 0.08), 0 0 0 22px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.notes-picture-box > .picture-tsp-watermark {
  position: absolute;
  inset: auto;
  right: 42px;
  bottom: 36px;
  z-index: 3;
  width: 104px;
  height: 104px;
  object-fit: contain;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  opacity: 0.22;
  filter: saturate(1.15) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34));
  mix-blend-mode: screen;
  pointer-events: none;
}

.button-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.button-outline-dark {
  color: var(--white);
  border-color: rgba(228, 188, 72, 0.7);
  background: transparent;
}

.note-link-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.note-link-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.94rem;
  font-weight: 650;
}

.section-heading h2,
.process h2,
.contact h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.closing-cost-note {
  max-width: 860px;
  margin: 28px auto 0;
  padding: 10px 18px;
  border: 1px solid rgba(228, 188, 72, 0.5);
  border-radius: 8px;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(228, 188, 72, 0.18), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.06);
  font-size: clamp(0.78rem, 0.88vw, 0.86rem);
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.highlight-panel {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(7, 26, 51, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f5f8fb);
}

.panel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 1.45rem;
  font-weight: 800;
}

.highlight-panel h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
}

.highlight-panel p,
.contact p,
.steps span {
  color: #435368;
}

.other-notes {
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(228, 188, 72, 0.12), transparent 28%),
    linear-gradient(180deg, #0b1424 0%, #101c31 100%);
}

.other-notes-heading {
  max-width: 860px;
  margin: 0 auto clamp(28px, 4vw, 46px);
  text-align: center;
}

.other-notes-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
}

.other-notes-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

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

.note-service-card {
  min-width: 0;
  border: 1px solid rgba(228, 188, 72, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.note-service-card a {
  display: grid;
  height: 100%;
  color: var(--white);
  text-decoration: none;
}

.note-service-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.note-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 31, 0.22));
  pointer-events: none;
}

.note-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 220ms ease, filter 220ms ease;
}

.note-service-card:hover .note-service-image img {
  filter: brightness(1.08) saturate(1.04);
  transform: scale(1.035);
}

.note-service-content {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
}

.note-service-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid rgba(228, 188, 72, 0.56);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(228, 188, 72, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.note-service-content strong {
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.2;
}

.note-service-content span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.48;
}

.additional-services {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: #f2f5fa;
}

.additional-services-heading {
  max-width: 940px;
  margin: 0 auto clamp(30px, 4vw, 46px);
  text-align: center;
}

.additional-services-heading .eyebrow {
  margin-bottom: 14px;
}

.additional-services-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.section-helper-text {
  margin: clamp(14px, 2vw, 20px) auto 0;
  color: #5d6b7d;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.additional-services-grid a {
  display: grid;
  min-height: 124px;
  place-items: center;
  padding: 22px 18px;
  border: 1px solid #c9d4e5;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.04);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
  text-decoration: none;
}

.testimonials {
  padding: clamp(58px, 8vw, 98px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.testimonials-heading {
  max-width: 960px;
  margin: 0 auto clamp(30px, 4vw, 44px);
  text-align: center;
}

.testimonial-section-label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 22px;
  border: 1px solid rgba(228, 188, 72, 0.52);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(228, 188, 72, 0.1);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  line-height: 1.08;
}

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

.testimonial-card {
  display: grid;
  gap: 12px;
  min-height: 248px;
  padding: 24px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.07);
}

.testimonial-card::before {
  content: "\"";
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.6;
}

.testimonial-card p {
  margin: 0;
  color: #435368;
  font-size: 0.96rem;
  line-height: 1.55;
}

.testimonial-card strong {
  align-self: end;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.25;
}

.testimonial-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 98px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 14% 18%, rgba(228, 188, 72, 0.18), transparent 26%),
    linear-gradient(135deg, #eef4fa 0%, #e4edf6 48%, #f8fafc 100%);
}

.process::before {
  content: "";
  position: absolute;
  inset: 28px clamp(20px, 4vw, 58px);
  border: 1px solid rgba(228, 188, 72, 0.24);
  border-radius: 8px;
  pointer-events: none;
}

.process .section-inner {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  grid-template-areas:
    "intro steps"
    "action action"
    "closing closing";
  column-gap: clamp(28px, 6vw, 80px);
  row-gap: clamp(26px, 4vw, 42px);
  align-items: start;
}

.split > div:first-child {
  grid-area: intro;
  align-self: center;
  position: relative;
  top: auto;
  padding: clamp(24px, 3vw, 34px);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.07);
  backdrop-filter: blur(8px);
}

.steps {
  grid-area: steps;
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 41px;
  width: 2px;
  background: linear-gradient(180deg, rgba(154, 104, 16, 0.18), rgba(228, 188, 72, 0.7), rgba(154, 104, 16, 0.18));
}

.steps li {
  position: relative;
  min-height: 104px;
  padding: 26px 28px 26px 82px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(228, 188, 72, 0.1), transparent 38%),
    var(--white);
  box-shadow: 0 18px 38px rgba(7, 17, 31, 0.09);
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  top: 26px;
  left: 24px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold-dark);
  box-shadow: 0 0 0 8px rgba(228, 188, 72, 0.12), 0 12px 22px rgba(154, 104, 16, 0.22);
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.process-action {
  grid-area: action;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.process-action .button {
  min-width: min(100%, 430px);
  min-height: 66px;
  box-shadow: 0 18px 34px rgba(154, 104, 16, 0.24);
}

.process-video-button {
  position: relative;
  padding-inline: 94px 34px;
  font-size: 1.28rem;
  font-weight: 900;
}

.process-video-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(7, 17, 31, 0.12), 0 8px 16px rgba(7, 17, 31, 0.16);
  transform: translateY(-50%);
}

.process-video-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--ink);
  transform: translateY(-50%);
}

.process-action p {
  max-width: 430px;
  margin: 10px 0 0;
  color: #5d6b7d;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.process .closing-cost-note {
  grid-area: closing;
  width: min(100%, 860px);
  margin-top: 0;
}

.site-footer {
  padding: clamp(42px, 5vw, 66px) clamp(20px, 5vw, 72px) 26px;
  color: rgba(255, 255, 255, 0.82);
  background: #03070d;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(170px, 0.72fr) minmax(210px, 0.72fr) minmax(270px, 0.88fr);
  gap: clamp(22px, 3.5vw, 48px);
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand strong,
.footer-brand span,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
}

.footer-brand span {
  color: var(--gold);
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  font-weight: 800;
}

.footer-brand small {
  display: inline;
  margin-top: 0;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
}

.footer-about p,
.footer-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 18px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-panel h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.15;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.footer-site-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-site-links h2 {
  margin-bottom: 10px;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  margin: -4px 0 0;
}

.footer-contact-list div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.footer-contact-list dt {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(228, 188, 72, 0.5);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(228, 188, 72, 0.08);
}

.footer-contact-list svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-contact-list dd {
  margin: 0;
}

.footer-contact-list a,
.footer-site-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-social-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-links > span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-social-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(228, 188, 72, 0.58);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(228, 188, 72, 0.08);
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  color: #07111f;
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.netlify-honeypot {
  display: none;
}

.footer-ad-banner {
  display: block;
  width: min(520px, 100%);
  margin: 20px auto 0;
  border: 1px solid rgba(228, 188, 72, 0.42);
  border-radius: 6px;
  overflow: hidden;
  background: #02060c;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.footer-ad-banner:hover,
.footer-ad-banner:focus-visible {
  border-color: rgba(228, 188, 72, 0.85);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.footer-ad-banner:focus-visible {
  outline: 3px solid rgba(228, 188, 72, 0.34);
  outline-offset: 4px;
}

.footer-ad-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(7, 17, 31, 0.18);
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.22);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-notice {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 31;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 44px));
  padding: 16px;
  border: 1px solid rgba(228, 188, 72, 0.42);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(3, 7, 13, 0.94);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.28);
}

.cookie-notice.is-hidden {
  display: none;
}

.cookie-notice p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-notice div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-notice a {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice button {
  min-height: 36px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: var(--gold);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.real-estate-page-hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 72vh, 760px);
  align-items: center;
  justify-items: start;
  padding: clamp(84px, 9vw, 130px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  color: var(--white);
  background: url("assets/real-estate-pool-home-hero-flipped.png");
  background-position: center center;
  background-size: cover;
}

.real-estate-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.86), rgba(7, 17, 31, 0.48) 46%, rgba(7, 17, 31, 0.12));
  pointer-events: none;
}

.real-estate-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.72));
  pointer-events: none;
}

.real-estate-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.real-estate-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
}

.real-estate-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.real-estate-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.real-estate-form-section {
  padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
}

.real-estate-form-intro {
  max-width: 900px;
  margin: 0 auto clamp(24px, 4vw, 38px);
  text-align: center;
}

.real-estate-form-intro h2 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.3vw, 4.15rem);
  line-height: 1.05;
}

.real-estate-form-intro p:not(.eyebrow) {
  max-width: 900px;
  margin: 26px auto 0;
  color: #26364d;
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.55;
  text-align: left;
}

.real-estate-note-form {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.08);
}

.real-estate-note-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.real-estate-note-form legend,
.real-estate-note-form label {
  color: var(--ink);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 600;
}

.real-estate-note-form label {
  display: grid;
  gap: 6px;
}

.real-estate-note-form span,
.real-estate-note-form fieldset p {
  color: #5d6b7d;
  font-size: 0.82rem;
  font-weight: 600;
}

.real-estate-form-grid {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.real-estate-form-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.real-estate-note-form input[type="text"],
.real-estate-note-form input[type="email"],
.real-estate-note-form input[type="tel"],
.real-estate-note-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(7, 17, 31, 0.32);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.real-estate-note-form textarea {
  min-height: 120px;
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 30px;
  margin-top: 10px;
}

.choice-grid.compact {
  grid-template-columns: repeat(4, minmax(0, max-content));
}

.choice-grid.property-types {
  grid-template-columns: repeat(3, minmax(0, max-content));
}

.choice-grid label {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
}

.choice-grid input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  accent-color: var(--gold-dark);
}

.file-upload-box {
  display: grid;
  min-height: 126px;
  place-items: center;
  margin-top: 14px;
  padding: 22px;
  border: 1px dashed rgba(7, 17, 31, 0.42);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.file-upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-box span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #eceef3;
  font-size: 1.8rem;
  font-weight: 400;
}

.real-estate-submit {
  width: fit-content;
  min-width: 122px;
  min-height: 46px;
  border-radius: 999px;
  color: var(--white);
  background: #178f0c;
  text-transform: uppercase;
}

.note-detail-hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 66vh, 700px);
  align-items: center;
  justify-items: start;
  padding: clamp(78px, 8vw, 120px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.48) 48%, rgba(7, 17, 31, 0.08)),
    var(--note-hero-image, url("assets/note-auto-cinematic.png"));
  background-position: center center;
  background-size: cover;
}

.note-detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.78));
  pointer-events: none;
}

.note-detail-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.note-detail-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.6vw, 5.35rem);
  line-height: 0.96;
}

.note-detail-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.note-form-section {
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
}

.note-form-intro {
  max-width: 900px;
  margin: 0 auto clamp(22px, 4vw, 34px);
  text-align: center;
}

.note-form-intro h2 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.55rem);
  line-height: 1.06;
}

.note-form-intro p:not(.eyebrow) {
  max-width: 900px;
  margin: 24px auto 0;
  color: #26364d;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  line-height: 1.55;
  text-align: left;
}

.note-service-choice-grid {
  grid-template-columns: repeat(4, minmax(0, max-content));
}

.note-detail-form input[name="service-needed"]:checked {
  box-shadow: 0 0 0 3px rgba(228, 188, 72, 0.18);
}

.additional-detail-hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 66vh, 700px);
  align-items: center;
  justify-items: start;
  padding: clamp(78px, 8vw, 120px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.54) 48%, rgba(7, 17, 31, 0.1)),
    url("assets/note-factoring-cinematic.png");
  background-position: center center;
  background-size: cover;
}

.additional-detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.78));
  pointer-events: none;
}

.additional-detail-services {
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 72px);
  background: #f2f5fa;
}

.additional-detail-services .other-notes-heading h2 {
  color: var(--navy);
}

.additional-detail-grid {
  margin-top: clamp(22px, 4vw, 38px);
}

.additional-service-choice-grid {
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.additional-services-form input[name="additional-service"]:checked {
  box-shadow: 0 0 0 3px rgba(228, 188, 72, 0.18);
}

.how-hero {
  padding: clamp(74px, 8vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.72) 52%, rgba(7, 17, 31, 0.32)),
    url("assets/hero-note-closing.png");
  background-position: center center;
  background-size: cover;
}

.how-hero-inner {
  max-width: 980px;
  margin-inline: auto;
}

.how-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.96;
}

.how-hero p:not(.eyebrow) {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.55;
}

.how-hero .button {
  margin-top: 28px;
}

.how-video-section {
  padding: clamp(50px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.how-video-heading,
.how-steps-heading {
  max-width: 920px;
  margin: 0 auto clamp(24px, 4vw, 38px);
  text-align: center;
}

.how-video-heading h2,
.how-steps-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.8vw, 4.45rem);
  line-height: 0.98;
}

.process-video-player {
  display: block;
  width: min(100%, 1060px);
  margin: 0 auto;
  border: 1px solid rgba(228, 188, 72, 0.36);
  border-radius: 8px;
  background: #03070d;
  box-shadow: 0 24px 58px rgba(7, 17, 31, 0.18);
}

.how-steps-section {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: #f2f5fa;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.how-step-card {
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.08);
}

.how-step-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.how-step-card div {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
}

.how-step-card span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.how-step-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.how-step-card p {
  margin: 0;
  color: #33435a;
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  line-height: 1.55;
}

.how-steps-section .closing-cost-note {
  margin-top: clamp(28px, 4vw, 42px);
}

.blog-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  padding: clamp(76px, 8vw, 124px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.82) 42%, rgba(7, 17, 31, 0.36) 72%, rgba(7, 17, 31, 0.18)),
    linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.54)),
    url("assets/blog-cinematic-hero.png");
  background-position: center center;
  background-size: cover;
}

.blog-hero-inner {
  width: min(100%, 1220px);
  margin-inline: auto;
}

.blog-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 6vw, 5.85rem);
  line-height: 0.98;
}

.blog-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

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

.blog-hero-actions .button {
  min-width: 190px;
}

.blog-feature-section,
.blog-content-section {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.blog-feature-section {
  background: #ffffff;
}

.blog-content-section {
  background: #f2f5fa;
}

.blog-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.blog-feature-card,
.blog-product-card,
.blog-article-card,
.blog-sidebar > div {
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.08);
}

.blog-feature-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
}

.blog-feature-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #07111f;
}

.blog-feature-card > div,
.blog-product-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(26px, 3.4vw, 46px);
}

.blog-feature-card h2,
.blog-product-card h2,
.blog-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.blog-feature-card h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.blog-product-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.blog-feature-card p:not(.eyebrow),
.blog-product-card p,
.blog-section-heading p,
.blog-article-card p,
.blog-sidebar p {
  margin: 0;
  color: #34445c;
}

.blog-feature-card p a {
  color: var(--gold-dark);
  text-decoration-color: rgba(228, 188, 72, 0.8);
  text-underline-offset: 4px;
}

.blog-feature-card p a strong {
  color: var(--gold-dark);
}

.blog-feature-card .button,
.blog-product-card .button {
  width: fit-content;
}

.blog-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.blog-share-link {
  min-height: 46px;
}

.blog-product-image {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  object-position: top center;
  background: #07111f;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.12);
}

.blog-section-heading {
  max-width: 860px;
  margin: 0 auto clamp(24px, 4vw, 40px);
  text-align: center;
}

.blog-section-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.blog-section-heading p {
  margin-top: 14px;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.blog-article-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: clamp(22px, 2.6vw, 32px);
}

.blog-article-card.blog-article-button {
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.1);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.blog-article-card.blog-article-button:hover,
.blog-article-card.blog-article-button:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(228, 188, 72, 0.7);
  box-shadow: 0 22px 50px rgba(7, 17, 31, 0.13);
  outline: none;
}

.blog-article-card.blog-article-button:focus-visible {
  box-shadow:
    0 0 0 4px rgba(228, 188, 72, 0.22),
    0 22px 50px rgba(7, 17, 31, 0.13);
}

.blog-article-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article-card h3,
.blog-sidebar h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
}

.blog-article-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.blog-sidebar {
  display: grid;
  gap: 18px;
}

.blog-sidebar > div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.blog-sidebar a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(228, 188, 72, 0.7);
  text-underline-offset: 4px;
}

.blog-article-modal[hidden] {
  display: none;
}

.blog-article-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
}

.blog-article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(8px);
}

.blog-article-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(86vh, 980px);
  overflow: auto;
  border: 1px solid rgba(228, 188, 72, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 251, 239, 0.98), rgba(255, 255, 255, 0.98) 32%, rgba(242, 245, 250, 0.98)),
    var(--white);
  box-shadow: 0 34px 90px rgba(7, 17, 31, 0.38);
  padding: clamp(28px, 4vw, 54px);
}

.blog-article-modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -8px -8px 12px 18px;
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.12);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.blog-article-modal h2 {
  clear: none;
  max-width: 780px;
  margin: 0 0 clamp(20px, 3vw, 32px);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
  line-height: 0.98;
}

.blog-article-modal-content {
  display: grid;
  gap: 18px;
  color: #263650;
}

.blog-article-modal-content h3 {
  margin: clamp(18px, 3vw, 30px) 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.blog-article-modal-content p,
.blog-article-modal-content li {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.blog-article-modal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.25rem;
}

.blog-article-modal-content strong {
  color: var(--ink);
}

.blog-article-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: 22px;
  border-top: 1px solid rgba(7, 17, 31, 0.1);
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 780px);
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.78) 35%, rgba(7, 17, 31, 0.34) 68%, rgba(7, 17, 31, 0.08)),
    linear-gradient(180deg, rgba(7, 17, 31, 0.04), rgba(7, 17, 31, 0.58));
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 680px);
  gap: 0;
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.8vw, 4.65rem);
  line-height: 1;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.58;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #03070d;
  box-shadow: none;
}

.about-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-content-section,
.about-services-section {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.about-content-section {
  background: #ffffff;
}

.about-services-section {
  background: #f2f5fa;
}

.about-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.about-copy-panel,
.about-trust-panel {
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.08);
}

.about-copy-panel {
  padding: clamp(28px, 4vw, 52px);
}

.about-trust-panel {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 3vw, 38px);
  border-left: 4px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(228, 188, 72, 0.1), transparent 42%),
    var(--white);
}

.about-copy-panel h2,
.about-trust-panel h2,
.about-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.about-copy-panel h2 {
  font-size: clamp(2.1rem, 4.2vw, 4rem);
}

.about-trust-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.about-copy-panel p,
.about-trust-panel p,
.about-closing-cta p {
  color: #34445c;
}

.about-copy-panel p {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.72;
}

.about-copy-panel strong {
  color: var(--ink);
  text-transform: uppercase;
}

.about-trust-panel p {
  margin: 0;
  line-height: 1.65;
}

.about-trust-panel a:not(.button) {
  color: var(--blue);
  font-weight: 800;
  text-decoration-color: rgba(228, 188, 72, 0.72);
  text-underline-offset: 4px;
}

.about-trust-panel .button {
  width: fit-content;
  margin-top: 4px;
}

.about-section-heading {
  max-width: 900px;
  margin: 0 auto clamp(24px, 4vw, 38px);
  text-align: center;
}

.about-section-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4.65rem);
}

.about-note-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.about-note-list a {
  display: grid;
  min-height: 94px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.07);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.about-note-list a:hover,
.about-note-list a:focus {
  border-color: rgba(228, 188, 72, 0.9);
  box-shadow: 0 18px 40px rgba(139, 100, 28, 0.13);
  outline: 0;
  transform: translateY(-1px);
}

.about-choice-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
  max-width: 1040px;
  margin: clamp(30px, 5vw, 54px) auto 0;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(228, 188, 72, 0.42);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(228, 188, 72, 0.16), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0b1424 58%, #101c31 100%);
  box-shadow: 0 24px 62px rgba(7, 17, 31, 0.18);
}

.about-choice-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(228, 188, 72, 0.56);
  border-radius: 50%;
  background: rgba(228, 188, 72, 0.08);
}

.about-choice-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--gold);
}

.about-choice-panel h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.about-choice-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-choice-panel li {
  position: relative;
  min-height: 36px;
  padding-left: 42px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
}

.about-choice-panel li::before {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.about-closing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: clamp(28px, 4vw, 42px) auto 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(228, 188, 72, 0.46);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(228, 188, 72, 0.15), rgba(255, 255, 255, 0.8));
}

.about-closing-cta p {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.48;
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 780px);
  padding: clamp(72px, 8vw, 116px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.76) 35%, rgba(7, 17, 31, 0.22) 68%, rgba(7, 17, 31, 0.08)),
    linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.52));
  pointer-events: none;
}

.contact-page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 660px);
  gap: 0;
  align-items: center;
}

.contact-page-copy {
  min-width: 0;
  max-width: 660px;
}

.contact-page-copy .eyebrow {
  white-space: nowrap;
}

.contact-page-copy h1 {
  display: grid;
  gap: 0.02em;
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.65vw, 5.25rem);
  line-height: 0.98;
}

.contact-page-copy h1 span {
  display: block;
}

.contact-page-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-page-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--navy);
  box-shadow: none;
}

.contact-page-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-page-section {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.contact-info-panel,
.contact-page-form {
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.08);
}

.contact-info-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
}

.contact-info-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
}

.contact-info-panel p:not(.eyebrow) {
  margin: 0;
  color: #34445c;
}

.contact-info-panel dl {
  display: grid;
  gap: 14px;
  margin: 8px 0 0;
}

.contact-info-panel dt {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-panel dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 650;
}

.contact-info-panel a {
  text-decoration-color: rgba(228, 188, 72, 0.78);
  text-underline-offset: 4px;
}

.contact-page-form {
  padding: clamp(24px, 3vw, 38px);
}

.contact-page-form .note-form-intro {
  max-width: 100%;
}

.contact-page-form .note-form-intro h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.real-estate-note-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(7, 17, 31, 0.2);
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.partial-purchase-section {
  padding: clamp(26px, 4vw, 44px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.partial-purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  max-width: 930px;
}

.partial-purchase-grid h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.55vw, 2.35rem);
  line-height: 1.08;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.partial-purchase-grid p,
.partial-purchase-grid li,
.partial-purchase-grid blockquote {
  color: var(--ink);
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  line-height: 1.4;
}

.partial-purchase-grid ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.partial-purchase-grid blockquote {
  margin: 0;
  max-width: 360px;
  padding: clamp(16px, 2vw, 20px);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: #f4f7fb;
  box-shadow: 0 10px 22px rgba(7, 17, 31, 0.05);
}

.partial-purchase-grid cite {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-main {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: #f2f5fa;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.07);
}

.legal-page h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1;
}

.legal-updated {
  margin: 14px 0 0;
  color: #5d6b7d;
  font-weight: 700;
}

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

.legal-page h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
}

.legal-page p,
.legal-page li {
  color: #435368;
}

.legal-page p {
  margin: 0 0 14px;
}

.legal-page ul {
  margin: 0;
  padding-left: 22px;
}

.legal-page a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 96px;
    right: 20px;
    display: none;
    min-width: min(320px, calc(100vw - 40px));
    padding: 16px;
    border: 1px solid rgba(228, 188, 72, 0.32);
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 18px 42px rgba(7, 26, 51, 0.14);
  }

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

  .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .nav-dropdown-trigger {
    width: fit-content;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown-menu a {
    padding: 8px 9px;
    font-size: 0.9rem;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-areas:
      "intro"
      "steps"
      "action"
      "closing";
  }

  .hero {
    min-height: auto;
    background-position: 42% center;
  }

  .hero-content {
    max-width: 100%;
    margin-left: 0;
  }

  .desktop-break {
    display: none;
  }

  .quote-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 36px;
    max-height: none;
  }

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

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

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

  .contact-page-hero-grid,
  .contact-page-grid,
  .about-hero-inner,
  .about-content-grid,
  .blog-feature-grid,
  .blog-feature-card,
  .blog-layout {
    grid-template-columns: 1fr;
  }

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

  .how-steps-grid {
    grid-template-columns: 1fr;
  }

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

  .real-estate-page-hero {
    min-height: auto;
    justify-items: start;
    background-position: 58% center;
    background-size: cover;
  }

  .note-detail-hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.56)),
      var(--note-hero-image, url("assets/note-auto-cinematic.png"));
    background-position: center center;
    background-size: cover;
  }

  .additional-detail-hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.56)),
      url("assets/note-factoring-cinematic.png");
    background-position: center center;
    background-size: cover;
  }

  .real-estate-form-grid.two-column,
  .partial-purchase-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid,
  .choice-grid.compact,
  .choice-grid.property-types,
  .note-service-choice-grid,
  .additional-service-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process::before {
    inset: 18px;
  }

  .closing-cost-note {
    white-space: normal;
  }

  .split > div:first-child {
    position: relative;
    top: auto;
  }

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

  .footer-bottom {
    display: grid;
  }

  .process-action {
    grid-area: action;
  }

  .notes-feature {
    display: block;
  }

  .notes-banner-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .notes-picture-box {
    width: 100%;
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 86px;
    padding: 10px 16px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand span {
    max-width: 190px;
    line-height: 1.12;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    top: 86px;
    right: 16px;
  }

  .hero {
    padding: 46px 18px 34px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .notes-highlight {
    padding-inline: 18px;
  }

  .notes-feature {
    padding: 22px;
  }

  .notes-picture-box {
    min-height: 260px;
  }

  .note-link-strip {
    display: grid;
  }

  .other-notes {
    padding-inline: 18px;
  }

  .additional-services {
    padding-inline: 18px;
  }

  .how-hero,
  .how-video-section,
  .how-steps-section,
  .about-hero,
  .about-content-section,
  .about-services-section,
  .blog-hero,
  .blog-feature-section,
  .blog-content-section,
  .contact-page-hero,
  .contact-page-section {
    padding-inline: 18px;
  }

  .how-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .additional-services-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.75rem);
    line-height: 0.98;
  }

  .blog-hero h1,
  .about-hero-copy h1,
  .contact-page-copy h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

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

  .about-hero-inner,
  .about-hero-copy {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 36px);
  }

  .about-note-list {
    grid-template-columns: 1fr;
  }

  .about-choice-panel {
    grid-template-columns: 1fr;
  }

  .about-choice-panel ul {
    grid-template-columns: 1fr;
  }

  .about-hero-visual img {
    aspect-ratio: 16 / 10;
  }

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

  .contact-page-actions,
  .contact-page-actions .button {
    width: 100%;
  }

  .contact-page-form .note-form-intro h2 {
    white-space: normal;
  }

  .contact-page-hero {
    min-height: 620px;
  }

  .testimonials {
    padding-inline: 18px;
  }

  .real-estate-form-section,
  .note-form-section,
  .additional-detail-services,
  .partial-purchase-section {
    padding-inline: 18px;
  }

  .real-estate-hero-copy h1,
  .note-detail-hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .real-estate-note-form {
    padding: 18px;
  }

  .choice-grid,
  .choice-grid.compact,
  .choice-grid.property-types,
  .note-service-choice-grid,
  .additional-service-choice-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .file-upload-box {
    min-height: 140px;
  }

  .process::before {
    inset: 12px;
  }

  .split > div:first-child {
    padding: 20px;
  }

  .steps::before {
    left: 31px;
  }

  .steps li {
    padding: 22px 20px 22px 66px;
  }

  .steps li::before {
    left: 14px;
  }

  .process-action {
    padding-left: 0;
  }

  .note-services-grid {
    grid-template-columns: 1fr;
  }

  .additional-services-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 62px;
    height: 62px;
  }

  .footer-legal-links {
    display: grid;
  }

  .footer-contact-list div {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .footer-contact-list a {
    overflow-wrap: anywhere;
  }

  .no-break {
    white-space: normal;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .cookie-notice {
    left: 16px;
    bottom: 16px;
    width: min(340px, calc(100vw - 86px));
  }

  .hero-actions,
  .hero-badges,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-badges {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

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

  .quote-card {
    padding: 22px;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand span {
    max-width: 170px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}
