:root {
  --navy: #0a2a43;
  --navy-deep: #06192a;
  --blue: #123b5e;
  --gold: #c9a227;
  --gold-soft: #e0c15b;
  --cream: #f6f1e7;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --ink: #152331;
  --muted: #657381;
  --line: #ddd1bb;
  --red: #9b3f36;
  --green: #2f7655;
  --shadow: 0 24px 70px -36px rgba(6, 25, 42, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(6, 25, 42, 0.96);
  backdrop-filter: blur(12px);
}

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

.logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.logo img {
  display: block;
  width: 268px;
  max-width: 100%;
  height: auto;
}

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

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 38px;
  border: 1px solid rgba(246, 241, 231, 0.35);
  border-radius: 6px;
  color: var(--cream);
  background: transparent;
  font-size: 1.35rem;
  cursor: pointer;
}

.review-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--navy-deep) url("northpoint-hero-background.png") center 42% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 25, 42, 0.98) 0%, rgba(6, 25, 42, 0.9) 43%, rgba(6, 25, 42, 0.42) 75%, rgba(6, 25, 42, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-content .eyebrow {
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 650px;
  margin-top: 20px;
  color: #d9e1e7;
  font-size: 1.12rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span {
  padding: 7px 11px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(201, 162, 39, 0.11);
  font-size: 0.85rem;
  font-weight: 700;
}

.review-section {
  padding: 76px 0 88px;
}

.review-layout {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 68px;
  align-items: start;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading .eyebrow,
.review-details .eyebrow,
.success-panel .eyebrow {
  margin-bottom: 12px;
}

.section-heading p:last-child {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.review-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

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

.field label {
  color: var(--navy-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.field label span {
  color: var(--red);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #b9b09f;
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.38);
  outline-offset: 2px;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #45545f;
  font-size: 0.88rem;
}

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

.botcheck {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.primary-button {
  border: 2px solid var(--gold);
  color: var(--navy-deep);
  background: var(--gold);
}

.primary-button:hover {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.secondary-button {
  margin-top: 20px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.secondary-button:hover {
  color: var(--cream);
  background: var(--navy);
}

.privacy-note {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.form-message {
  min-height: 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.error-message {
  color: var(--red);
}

.review-details {
  display: grid;
  gap: 28px;
  padding-top: 28px;
}

.review-details > div:first-child h2 {
  margin-top: 4px;
}

.review-list {
  display: grid;
  list-style: none;
}

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

.review-list li > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.review-list h3 {
  margin-bottom: 6px;
}

.review-list p {
  color: var(--muted);
  font-size: 0.93rem;
}

.expectation-note {
  padding: 20px 22px;
  border-left: 5px solid var(--gold);
  background: var(--cream);
}

.expectation-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-deep);
}

.expectation-note p {
  color: #52616c;
  font-size: 0.93rem;
}

.success-panel {
  padding: 44px 38px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-panel h2 {
  max-width: 620px;
  margin-bottom: 14px;
}

.success-panel > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
}

.success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 1.5rem;
  font-weight: 900;
}

.site-footer {
  color: #c6d0d7;
  background: var(--navy-deep);
}

.footer-wrap {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 36px;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-logo img {
  width: 286px;
}

.footer-wrap > div:first-child p {
  margin-top: 14px;
  color: #9eacb7;
}

.footer-wrap > div:last-child {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-wrap strong {
  margin-bottom: 5px;
  color: var(--gold-soft);
}

.footer-wrap a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  justify-content: space-between;
  gap: 20px;
  color: #8fa0ad;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 20px 24px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

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

  .nav-links a {
    padding: 10px 0;
  }

  .review-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .review-details {
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    width: min(100% - 28px, 1180px);
  }

  .logo img {
    width: 230px;
  }

  .review-hero {
    min-height: 430px;
    background-position: 62% center;
  }

  .hero-content,
  .review-layout,
  .footer-wrap,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding: 62px 0 54px;
  }

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

  .review-section {
    padding: 58px 0 66px;
  }

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

  .review-form {
    padding: 22px 18px;
  }

  .review-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .success-panel {
    padding: 34px 24px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
