:root {
  --navy: #00334A;
  --navy-dark: #002536;
  --ink: #1a2a33;
  --muted: #5a6b74;
  --line: #e3e9ec;
  --bg: #ffffff;
  --bg-soft: #f4f7f8;
  --accent: #b98a3c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Archivo Black', 'Archivo', sans-serif; color: var(--navy); line-height: 1.15; }
a { color: var(--navy); }
img { max-width: 100%; display: block; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* header */
header.site {
  background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
header.site img.logo { height: 34px; width: auto; }
header.site nav a {
  margin-left: 28px; text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink);
}
header.site nav a.cta {
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 6px;
}

/* hero */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; padding: 96px 0 88px; }
.hero h1 { color: #fff; font-size: clamp(34px, 5.5vw, 58px); letter-spacing: -0.5px; }
.hero p.sub { font-size: clamp(17px, 2.2vw, 21px); color: #c8d6dd; max-width: 640px; margin-top: 18px; }
.hero .actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 6px;
}
.btn.primary { background: #fff; color: var(--navy); }
.btn.outline { border: 2px solid rgba(255,255,255,.55); color: #fff; }
.btn.navy { background: var(--navy); color: #fff; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 700;
  color: var(--accent); margin-bottom: 14px;
}

/* sections */
section { padding: 72px 0; }
section.soft { background: var(--bg-soft); }
h2.sec { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
p.lead { color: var(--muted); font-size: 18px; max-width: 700px; }

/* property card */
.prop-card {
  margin-top: 36px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr;
}
.prop-card .media {
  background: linear-gradient(150deg, var(--navy) 0%, #0b4a66 100%);
  min-height: 280px; position: relative; display: flex; align-items: center; justify-content: center;
}
.prop-card .media span { color: #9fb9c6; font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.prop-card .body { padding: 34px 36px; }
.prop-card h3 { font-size: 24px; }
.prop-card .price { font-size: 28px; font-weight: 800; color: var(--navy); margin: 10px 0 4px; }
.prop-card .price small { font-size: 15px; color: var(--muted); font-weight: 600; }
.specs { list-style: none; margin: 18px 0 24px; }
.specs li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; display: flex; justify-content: space-between; gap: 16px; }
.specs li b { color: var(--navy); white-space: nowrap; }

/* detail table page */
.detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 42px; margin-top: 42px; }
.factbox { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 28px; height: fit-content; }
.factbox h3 { font-size: 18px; margin-bottom: 12px; }
.finance-note {
  margin-top: 22px; background: var(--navy); color: #fff; border-radius: 12px; padding: 26px 28px;
}
.finance-note h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.finance-note p { color: #c8d6dd; font-size: 15.5px; }
.map-embed { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 26px; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }
.caption { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* legal pages */
.legal h1 { font-size: 34px; margin: 48px 0 8px; }
.legal h2 { font-size: 21px; margin: 34px 0 10px; }
.legal p, .legal li { color: #33454e; font-size: 15.5px; }
.legal ul { margin: 10px 0 10px 22px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 26px; }

/* footer */
footer.site { background: var(--navy-dark); color: #9fb9c6; padding: 54px 0 40px; margin-top: 40px; }
footer.site img.logo { height: 30px; width: auto; margin-bottom: 18px; }
footer.site a { color: #d5e2e8; text-decoration: none; margin-right: 22px; font-size: 14.5px; }
footer.site p { font-size: 13.5px; margin-top: 14px; }

@media (max-width: 760px) {
  .prop-card, .detail-grid { grid-template-columns: 1fr; }
  header.site nav a:not(.cta) { display: none; }
}
