@"
:root{
  --bg:#fafafa;
  --ink:#12131a;
  --muted:#5a5f6f;
  --card:#ffffff;
  --border:rgba(18,19,26,.12);
  --shadow:0 10px 30px rgba(18,19,26,.08);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
}

a{color:inherit;text-decoration:none}

/* LAYOUT */
.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:24px 18px;
}

.main{padding-bottom:80px}

/* TOP BAR / NAV */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,250,250,.88);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid rgba(18,19,26,.08);
}

.topbarInner{
  max-width:1100px;
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:220px;
}

.brandLink{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink);
}

.brandMark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(18,19,26,.14);
  font-weight:800;
  letter-spacing:.5px;
  background:#fff;
}

.brandText{
  font-weight:700;
  color:var(--ink);
}

.topNav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px; /* <- spacing between tabs */
}

.topNav a{
  color:var(--ink);           /* <- black tabs */
  text-decoration:none;       /* <- no underline */
  font-weight:600;
  font-size:15px;
  padding:8px 10px;
  border-radius:999px;
  transition:background .12s ease, transform .12s ease;
}

.topNav a:hover{
  background:rgba(18,19,26,.06);
  transform:translateY(-1px);
}

.topNav a:active{transform:translateY(0)}

.topRight{
  min-width:90px;
  display:flex;
  justify-content:flex-end;
}

.topRight a{
  color:var(--ink);
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
}

.topRight a:hover{background:rgba(18,19,26,.06)}

/* HERO */
.hero--center{
  text-align:center;
  margin:44px 0 26px;
}

.heroTitle{
  font-family:Fraunces,serif;
  font-size:52px;
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.01em;
}

.lede{
  margin:0;
  font-size:22px;
  line-height:1.45;
  color:var(--muted);
}

.muted{color:var(--muted)}

/* CARDS */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

/* FILTERS */
.filters{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}

.field{display:block}
.field__label{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
  display:block;
}

input,select{
  width:100%;
  font-size:16px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(18,19,26,.16);
  background:#fff;
  outline:none;
}

input:focus,select:focus{
  border-color:rgba(18,19,26,.55);
  box-shadow:0 0 0 4px rgba(18,19,26,.08);
}

/* SPREAD SECTION */
.spreadHero{
  margin:26px 0 18px;
}

.spreadTitle{
  font-family:Fraunces,serif;
  font-size:26px;
  margin:0 0 6px;
}

.spreadSub{
  margin:0 0 14px;
  color:var(--muted);
}

.spreadGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.spreadCard{
  display:block;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 22px rgba(18,19,26,.06);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.spreadCard:hover{
  transform:translateY(-2px);
  border-color:rgba(18,19,26,.20);
  box-shadow:0 14px 28px rgba(18,19,26,.10);
}

.spreadName{
  font-weight:600;
  font-size:16px;
  margin-bottom:6px;
}

.spreadNote{
  color:var(--muted);
  font-size:13px;
}

/* BROWSE LINK */
.browseLink{
  display:flex;
  justify-content:center;
  margin:18px 0 10px;
}

.browseBtn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(18,19,26,.18);
  background:#fff;
  box-shadow:0 8px 18px rgba(18,19,26,.06);
  font-weight:600;
}

.browseBtn:hover{transform:translateY(-1px)}
.browseBtn:active{transform:translateY(0)}

/* GATE (optional; gate page has inline CSS, but this keeps it consistent if needed) */
.gateBox{
  max-width:560px;
  margin:44px auto 0;
  text-align:center;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .heroTitle{font-size:44px}
  .filters{grid-template-columns:1fr 1fr}
  .spreadGrid{grid-template-columns:1fr}
  .wrap{padding:22px 16px}

  .topbarInner{padding:10px 14px}
  .brand{min-width:unset}
  .topRight{min-width:unset}
}

@media (max-width: 520px){
  .heroTitle{font-size:36px}
  .lede{font-size:18px}
  input,select{font-size:16px}

  .topNav{gap:8px}
  .topNav a{font-size:14px; padding:7px 9px}
}
"@ | Set-Content -Path C:\Users\giov-\onproperty\onproperty\openroom\sundaymotors_clean\style.css -Encoding UTF8
