/* Rose Pellett - Static Realtor Site
   NOTE: Colors are intentionally neutral and modern.
   Replace assets/rose-headshot.jpg with Rose's headshot when you receive it.
*/
:root{
  --bg:#0b0f14;
  --panel:#101722;
  --text:#e8eef7;
  --muted:#a9b7c9;
  --line:#223049;
  --brand:#7dd3fc;
  --brand2:#38bdf8;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 800px at 10% 0%, #0f1a2b 0%, var(--bg) 45%);
  color:var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
a.text-link{ color:var(--brand); }
a.text-link:hover{ text-decoration:underline; }

.container{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{ left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; border:1px solid var(--line); border-radius:10px; z-index:999; }

.site-header{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(9,13,19,.65);
  border-bottom:1px solid rgba(34,48,73,.6);
  z-index:50;
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{ display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px; }
.brand-mark{
  width:38px; height:38px; display:grid; place-items:center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#001018; border-radius:14px;
}
.brand-name{ font-size:16px; }

.site-nav{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.nav-link{
  padding:10px 12px; border-radius:12px; color:var(--muted);
}
.nav-link:hover{ background:rgba(34,48,73,.35); color:var(--text); }
.nav-link.active{ color:var(--text); background:rgba(34,48,73,.45); }
.nav-link.cta{
  background: linear-gradient(135deg, rgba(125,211,252,.25), rgba(56,189,248,.15));
  border:1px solid rgba(125,211,252,.25);
  color:var(--text);
}

.nav-toggle{
  display:none;
  border:1px solid rgba(34,48,73,.6);
  background:rgba(16,23,34,.6);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.sr-only{ position:absolute; left:-999px; }

.hero{ padding:56px 0 24px; }
.hero-grid{
  display:grid; gap:26px;
  grid-template-columns: 1.25fr .85fr;
  align-items:start;
}
.kicker{ color:var(--muted); margin:0 0 10px; }
.hero h1{ font-size:44px; line-height:1.1; margin:0 0 12px; }
.lead{ color:var(--muted); font-size:18px; margin:0 0 18px; }

.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px; }

.button{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(34,48,73,.7);
  background:rgba(16,23,34,.6);
  color:var(--text);
  cursor:pointer;
  font-weight:600;
}
.button:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.button.primary{
  border:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#001018;
}
.button.ghost{ background: transparent; }
.button.full{ width:100%; }

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:18px;
}
.trust-item{
  border:1px solid rgba(34,48,73,.55);
  background:rgba(16,23,34,.45);
  padding:12px;
  border-radius:16px;
}
.trust-title{ font-weight:700; margin-bottom:4px; }
.trust-sub{ color:var(--muted); font-size:13px; }

.hero-card, .card, .cta-box{
  border:1px solid rgba(34,48,73,.65);
  background:rgba(16,23,34,.55);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.hero-card h2{ margin:0 0 6px; font-size:20px; }
.hero-card p{ margin:0 0 12px; color:var(--muted); }

.form{ display:grid; gap:12px; }
label{ display:grid; gap:6px; font-weight:600; }
input, textarea, select{
  background:rgba(14,21,32,.7);
  border:1px solid rgba(34,48,73,.75);
  border-radius:14px;
  padding:12px;
  color:var(--text);
  font: inherit;
}
input::placeholder, textarea::placeholder{ color:rgba(169,183,201,.75); }
.fineprint{ color:rgba(169,183,201,.85); font-size:12px; margin:8px 0 0; }

.toast{ margin-top:12px; color:#b9f6ca; min-height:18px; }

.section{ padding:38px 0; }
.section.alt{
  background: linear-gradient(180deg, rgba(16,23,34,.0), rgba(16,23,34,.55), rgba(16,23,34,.0));
  border-top: 1px solid rgba(34,48,73,.35);
  border-bottom: 1px solid rgba(34,48,73,.35);
}
.section-head{ margin-bottom:18px; }
.section-head h2{ margin:0 0 6px; font-size:28px; }
.section-head p{ margin:0; color:var(--muted); }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card h2, .card h3{ margin:0 0 8px; }
.card p{ margin:0 0 10px; color:var(--muted); }
.bullets{ margin:0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:6px 0; }

.listings-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.listing{
  border:1px solid rgba(34,48,73,.65);
  background:rgba(16,23,34,.45);
  border-radius:var(--radius);
  overflow:hidden;
}
.listing-photo{
  height:140px;
  background:
    linear-gradient(135deg, rgba(125,211,252,.25), rgba(56,189,248,.08)),
    radial-gradient(200px 140px at 30% 40%, rgba(255,255,255,.12), rgba(255,255,255,0));
}
.listing-body{ padding:14px; }
.listing-price{ font-size:20px; font-weight:800; }
.listing-meta, .listing-address{ color:var(--muted); font-size:13px; margin-top:2px; }

.center{ text-align:center; }
.mt-16{ margin-top:16px; }
.mt-24{ margin-top:24px; }

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.pill-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.pill{
  border:1px solid rgba(34,48,73,.65);
  background:rgba(16,23,34,.45);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}

.page{ padding:34px 0 44px; }

.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  margin-top:16px;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.contact-quick{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.quick{
  border:1px solid rgba(34,48,73,.65);
  background:rgba(16,23,34,.45);
  padding:12px;
  border-radius:16px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.q-label{ color:var(--muted); font-weight:700; font-size:13px; }
.q-value{ font-weight:800; }

.divider{
  height:1px;
  background: rgba(34,48,73,.65);
  margin:14px 0;
}
.mini{ margin:0 0 6px; font-size:16px; }

.headshot{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap:16px;
  align-items:start;
}
.headshot img{
  width:100%;
  border-radius:var(--radius);
  border:1px solid rgba(34,48,73,.65);
  background:rgba(16,23,34,.45);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.note{
  border:1px dashed rgba(125,211,252,.35);
  background: rgba(16,23,34,.35);
  padding:12px;
  border-radius: 16px;
  color: var(--muted);
}

.site-footer{
  border-top:1px solid rgba(34,48,73,.55);
  padding:20px 0;
  background:rgba(9,13,19,.55);
}
.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-links{ display:flex; gap:12px; color:var(--muted); flex-wrap:wrap; justify-content:flex-end; }
.footer-links a:hover{ color:var(--text); }
.footer-brand{ margin-bottom:8px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .listings-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr; }
  .headshot{ grid-template-columns: 1fr; }
  .nav-toggle{ display:inline-flex; }
  .site-nav{ display:none; }
  .site-nav.open{
    display:flex;
    position:absolute;
    right:24px; top:62px;
    flex-direction:column;
    background:rgba(16,23,34,.92);
    border:1px solid rgba(34,48,73,.75);
    border-radius:16px;
    padding:10px;
    min-width: 240px;
    max-width: calc(100vw - 48px);
  }
}
