/* Prime Crests LLC — site styles */
:root {
  --navy: #132b45;
  --navy-deep: #0d1f33;
  --ink: #1c2733;
  --paper: #ffffff;
  --bg: #fbfaf8;
  --grey: #5f6b78;
  --line: #e6e3dc;
  --soft: #f4f2ed;
  --gold: #b08d4a;
  --gold-soft: #c9ab72;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--navy); color: #fff; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
header.site {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--navy);
}

.brand-mark .bar { font-weight: 300; padding: 0 2px; color: var(--gold); }

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  border-left: 1px solid var(--line);
  padding-left: 15px;
}

.brand-name .top {
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
}

.brand-name .sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--grey);
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}

nav a:hover, nav a.active { color: var(--navy); border-color: var(--gold); }

nav a.nav-cta {
  border: 1px solid var(--navy);
  padding: 10px 24px;
  color: var(--navy);
  transition: background .25s, color .25s;
}
nav a.nav-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: var(--sans);
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
  padding: 110px 0 100px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--paper) 100%);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  font-weight: 600;
}

.kicker::before, .kicker::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold-soft);
}

.kicker.left::before { display: none; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.8vw, 66px);
  font-weight: 600;
  line-height: 1.14;
  max-width: 840px;
  margin: 0 auto 26px;
  color: var(--navy);
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 42px;
  color: var(--grey);
  font-size: 19px;
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 42px;
  border: 1px solid var(--navy);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  background: transparent;
  transition: background .25s, color .25s;
}

.btn:hover { background: var(--navy); color: #fff; }

.btn.solid { background: var(--navy); color: #fff; }
.btn.solid:hover { background: var(--navy-deep); }

.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stats band ---------- */
.stats {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 40px 20px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }

.stat .value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--navy);
}

.stat .label {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---------- Sections ---------- */
.section { padding: 95px 0; }
.section.alt { background: var(--soft); }
.section.line-top { border-top: 1px solid var(--line); }

.section h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy);
  line-height: 1.18;
}

.section .center { text-align: center; }
.section p.sub {
  color: var(--grey);
  max-width: 650px;
  margin-bottom: 52px;
  font-weight: 300;
  font-size: 18px;
}
.section .center p.sub { margin-left: auto; margin-right: auto; }

.section p.body { color: #38424e; margin-bottom: 16px; }

/* ---------- Grid cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 28px;
}

.card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--paper);
  padding: 42px 34px 38px;
}

.card .num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  font-weight: 600;
}

.card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 13px;
  color: var(--navy);
}

.card p { color: var(--grey); font-size: 15.5px; }

/* ---------- Two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: start;
}

.facts {
  border: 1px solid var(--line);
  background: var(--paper);
}

.facts .head {
  padding: 18px 28px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.facts .head::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--gold-soft);
}

.facts .row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.facts .row:last-child { border-bottom: none; }
.facts .row .k { color: var(--grey); letter-spacing: 1.5px; text-transform: uppercase; font-size: 12px; padding-top: 3px; }
.facts .row .v { text-align: right; font-weight: 500; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-block {
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--paper);
  padding: 46px 42px;
  height: 100%;
}

.contact-block h3 {
  font-family: var(--serif);
  font-size: 23px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.contact-item { margin-bottom: 22px; }
.contact-item .label {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-item a { color: var(--navy); }

/* ---------- Legal pages ---------- */
.legal { max-width: 790px; margin: 0 auto; padding: 85px 28px 105px; }

.legal h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
}

.legal .updated {
  color: var(--grey);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal .updated::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}

.legal h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 46px 0 15px;
  color: var(--navy);
}

.legal p, .legal li { color: #38424e; margin-bottom: 14px; font-size: 16.5px; }
.legal ul { padding-left: 24px; margin-bottom: 14px; }
.legal a { color: var(--navy); }

.legal .notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: var(--soft);
  padding: 24px 28px;
  margin: 30px 0;
  font-size: 15.5px;
}

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy-deep);
  color: #aeb8c4;
  padding: 74px 0 42px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 50px;
}

.footer-brand .brand-mark {
  color: #fff;
  font-size: 36px;
  display: inline-block;
  margin-bottom: 4px;
}

.footer-brand .brand-line {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

footer.site h4 {
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
}

footer.site p, footer.site address { color: #93a1b0; font-style: normal; font-weight: 300; }

footer.site ul { list-style: none; }
footer.site li { margin-bottom: 11px; }
footer.site a { color: #aeb8c4; text-decoration: none; transition: color .2s; }
footer.site a:hover { color: #fff; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 26px;
  margin-bottom: 22px;
  font-size: 13.5px;
  color: #7f8ea0;
  font-weight: 300;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #7f8ea0;
  font-size: 13.5px;
  font-weight: 300;
}

/* ---------- Founder note ---------- */
.founder-wrap { max-width: 780px; margin: 0 auto; text-align: center; }

.founder-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 27px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 34px;
}

.signature::before {
  content: "";
  display: block;
  width: 44px; height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}

.signature .name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
}

.signature .role {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }

.faq details {
  border: 1px solid var(--line);
  background: var(--paper);
  margin-bottom: 14px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 26px;
  font-weight: 500;
  font-size: 16.5px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--gold);
  transition: transform .25s;
  flex-shrink: 0;
}

.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] { border-color: var(--navy); }

.faq details p {
  padding: 0 26px 22px;
  color: var(--grey);
  font-size: 15.5px;
}

.faq details p a { color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
}

@media (max-width: 820px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 10px 28px 22px;
    align-items: flex-start;
  }
  nav ul.open { display: flex; }
  nav ul li { padding: 11px 0; width: 100%; }
  nav a.nav-cta { display: inline-block; margin-top: 6px; }
  .menu-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero { padding: 72px 0 66px; }
  .section { padding: 64px 0; }
  .brand-name .sub { display: none; }
  .brand-name .top { font-size: 12px; letter-spacing: 3px; }
  .brand-mark { font-size: 27px; }
  .brand { gap: 11px; }
  .brand-name { padding-left: 11px; }
}
