/* Proxima Property marketing site — navy / gold / white, mobile-first. */

:root {
  --px-navy: #0b1f3a;
  --px-navy-light: #14335e;
  --px-gold: #c9973f;
  --px-white: #ffffff;
  --px-bg-alt: #f6f7fa;
  --px-ink: #1b2230;
  --px-muted: #5b6472;
  --px-border: #e3e6ec;
  --px-radius: 10px;
  --px-shadow: 0 8px 28px rgba(11, 31, 58, 0.10);
}

* { box-sizing: border-box; }

body.px-body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--px-ink);
  background: var(--px-white);
  line-height: 1.55;
}

.px-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--px-navy-light); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--px-gold);
  outline-offset: 2px;
}

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

/* Header */
.px-header {
  background: var(--px-navy);
  position: sticky;
  top: 0;
  z-index: 40;
}
.px-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.px-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.px-brand img { height: 32px; width: auto; }
.px-brand .word { color: var(--px-white); font-weight: 700; font-size: 18px; letter-spacing: 0.2px; }

.px-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  cursor: pointer;
}
.px-nav-toggle span { display: block; height: 2px; width: 18px; margin: 0 auto; background: var(--px-white); }

.px-nav {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--px-navy);
  display: none;
  flex-direction: column;
  padding: 8px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.px-nav.open { display: flex; }
.px-nav-links { display: flex; flex-direction: column; gap: 4px; }
.px-nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 10px 4px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.px-nav-links a.active, .px-nav-links a:hover { color: var(--px-gold); }
.px-nav-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

.px-btn {
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.px-btn-gold { background: var(--px-gold); color: var(--px-navy); }
.px-btn-gold:hover { background: #b9862f; }
.px-btn-outline { background: transparent; color: var(--px-white); border-color: rgba(255,255,255,.4); }
.px-btn-outline:hover { border-color: var(--px-white); }
.px-btn-navy { background: var(--px-navy); color: var(--px-white); }
.px-btn-navy:hover { background: var(--px-navy-light); }

/* Hero */
.px-hero {
  background: linear-gradient(160deg, var(--px-navy) 0%, var(--px-navy-light) 100%);
  color: var(--px-white);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.px-hero-star {
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201,151,63,.35), transparent 60%);
}
.px-hero-inner { position: relative; max-width: 720px; }
.px-eyebrow {
  display: inline-block;
  color: var(--px-gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.px-hero h1 { font-size: 32px; line-height: 1.2; margin: 0 0 16px; }
.px-hero p.lead { font-size: 17px; color: rgba(255,255,255,.82); margin: 0 0 26px; }
.px-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Sections */
.px-section { padding: 52px 0; }
.px-section-alt { background: var(--px-bg-alt); }
.px-section h2 { font-size: 26px; margin: 0 0 12px; color: var(--px-navy); }
.px-section p.lead { color: var(--px-muted); font-size: 16px; max-width: 680px; margin: 0 0 30px; }
.px-kicker {
  color: var(--px-gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.px-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .px-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .px-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.px-card {
  background: var(--px-white);
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
  padding: 22px;
}
.px-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--px-navy); }
.px-card p { margin: 0; color: var(--px-muted); font-size: 14.5px; }

.px-steps { counter-reset: px-step; display: grid; gap: 18px; }
.px-step { display: flex; gap: 14px; align-items: flex-start; }
.px-step-num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--px-navy);
  color: var(--px-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.px-step h3 { margin: 0 0 4px; font-size: 16px; color: var(--px-navy); }
.px-step p { margin: 0; color: var(--px-muted); font-size: 14.5px; }

.px-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.px-list li { padding-left: 26px; position: relative; color: var(--px-ink); font-size: 15px; }
.px-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--px-gold);
}

.px-cta-band {
  background: var(--px-navy);
  color: var(--px-white);
  border-radius: var(--px-radius);
  padding: 34px 26px;
  text-align: center;
}
.px-cta-band h2 { color: var(--px-white); margin-bottom: 10px; }
.px-cta-band p { color: rgba(255,255,255,.8); margin-bottom: 20px; }
.px-cta-band .px-hero-ctas { justify-content: center; }

/* Forms */
.px-form { display: grid; gap: 16px; max-width: 560px; }
.px-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--px-navy); }
.px-field input, .px-field textarea {
  width: 100%;
  border: 1px solid var(--px-border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
}
.px-field .errorlist { list-style: none; margin: 6px 0 0; padding: 0; color: #b3261e; font-size: 13px; }
.px-alert-success {
  background: #eef7ef;
  border: 1px solid #bfe3c3;
  color: #205a2c;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 14.5px;
}

/* Footer */
.px-footer { background: var(--px-navy); color: rgba(255,255,255,.7); padding: 40px 0 24px; margin-top: 40px; }
.px-footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 720px) { .px-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.px-footer h4 { color: var(--px-white); font-size: 14px; margin: 0 0 10px; }
.px-footer a { color: rgba(255,255,255,.7); text-decoration: none; display: block; padding: 4px 0; font-size: 14px; }
.px-footer a:hover { color: var(--px-gold); }
.px-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
.px-footer-bottom a { display: inline; padding: 0; }

.px-skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--px-white);
  color: var(--px-navy);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.px-skip-link:focus { left: 0; }

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

@media (min-width: 860px) {
  .px-hero h1 { font-size: 42px; }
  .px-nav-toggle { display: none; }
  .px-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    border-top: 0;
    padding: 0;
    flex: 1;
    gap: 20px;
  }
  .px-nav-links { flex-direction: row; gap: 18px; }
  .px-nav-links a { border-bottom: 0; padding: 6px 2px; }
  .px-nav-cta { flex-direction: row; margin-top: 0; }
}
