/*
Theme Name: Regina Chen Staging
Description: Realtor Pal look, Regina IA. Staging only.
Version: 1.1.0
*/

:root {
  --ink: #1c2430;
  --muted: #5c636c;
  --gold: #c4a15a;
  --gold-hover: #b08d48;
  --line: #ece8e1;
  --cream: #f4f1ec;
  --header: #fff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font: 16px/1.6 Roboto, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #fff;
}
h1, h2, h3, .brand, .nav a, .btn, .hero-name {
  font-family: Jost, "Helvetica Neue", sans-serif;
}
a { color: var(--gold-hover); text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.staging-bar {
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 12px;
}

.site-header {
  background: var(--header);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.brand {
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: .04em;
}
.nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav li { position: relative; }
.nav a {
  display: block;
  padding: 10px 11px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 8px 0;
  z-index: 20;
}
.nav li:hover > .sub-menu { display: block; }
.nav .sub-menu a { text-transform: none; letter-spacing: 0; font-size: 14px; }
.header-phone {
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero video, .hero .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .shade {
  position: absolute;
  inset: 0;
  background: rgba(10,10,12,.55);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 24px; max-width: 860px; }
.hero-name {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  margin: 0 0 18px;
  line-height: 1.15;
}
.hero-name span { font-weight: 400; opacity: .95; }
.hero p {
  font-family: Jost, sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  margin: 0 0 28px;
  color: #ece6d8;
}
.underline { border-bottom: 2px solid var(--gold); }
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: 14px 26px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.btn:hover { background: var(--gold-hover); }
.btn-ghost {
  background: transparent;
  border-bottom: 1px solid #fff;
  padding: 14px 8px;
  margin-left: 18px;
  letter-spacing: .06em;
}
.btn-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }

.section { padding: 72px 0; }
.section.alt { background: var(--cream); }
.eyebrow {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin: 0 0 10px;
}
h2 { font-size: 34px; font-weight: 500; margin: 0 0 14px; line-height: 1.2; }
h3 { font-size: 18px; font-weight: 500; margin: 0 0 8px; }
.lede { color: var(--muted); max-width: 640px; margin: 0 0 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 8px 4px 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.stat { font-size: 28px; margin: 0 0 6px; font-family: Jost, sans-serif; }

.nbhd {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.nbhd:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.1));
}
.nbhd span { position: relative; z-index: 1; font-family: Jost, sans-serif; font-size: 20px; }

.page-body { padding: 56px 0 80px; max-width: 760px; }
.page-body p { color: #333; }

.site-footer {
  background: #111;
  color: #bbb;
  padding: 40px 0 28px;
  font-size: 14px;
}
.site-footer a { color: #eee; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }

@media (max-width: 900px) {
  .grid-4, .grid-3, .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone { display: none; }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .footer-grid { grid-template-columns: 1fr; }
}
